From 1e0a9a71b274e6125de21662e190cdf22d4df744 Mon Sep 17 00:00:00 2001 From: CrystalMoogle Date: Sun, 16 Jul 2023 15:15:29 +0100 Subject: [PATCH] Remove unneeded code --- BlackjackGUI/player.vb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/BlackjackGUI/player.vb b/BlackjackGUI/player.vb index 3b36963..afa169d 100644 --- a/BlackjackGUI/player.vb +++ b/BlackjackGUI/player.vb @@ -1,16 +1,8 @@ Public Class Player - Private _winCondition As WinCondition Public Property hand As New List(Of String) Public Property total As Integer Public Property ingame As Boolean - Public Property winType - Get - Return _winCondition - End Get - Set - _winCondition = Value - End Set - End Property + Public Property winType As WinCondition Sub Start() hand.Clear()