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()