-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
401 additions
and
54 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
TwentyOne/TwentyOne/.vs/ProjectEvaluation/twentyone.metadata.v9.bin
Binary file not shown.
Binary file modified
BIN
+26.2 KB
(150%)
TwentyOne/TwentyOne/.vs/ProjectEvaluation/twentyone.projects.v9.bin
Binary file not shown.
Binary file modified
BIN
+37 Bytes
(100%)
TwentyOne/TwentyOne/.vs/ProjectEvaluation/twentyone.strings.v9.bin
Binary file not shown.
Binary file modified
BIN
+208 Bytes
(100%)
TwentyOne/TwentyOne/.vs/TwentyOne/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file removed
BIN
-3.13 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/2a8299fe-6382-4233-8547-a81e7b319479.vsidx
Binary file not shown.
Binary file added
BIN
+6.33 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/36af7891-8761-4c74-828a-44a6e03dc509.vsidx
Binary file not shown.
Binary file added
BIN
+10 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/5250ecff-afe6-421a-aed9-ca60fc7c441b.vsidx
Binary file not shown.
Binary file removed
BIN
-4.36 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/6621d343-5978-4a1e-8c9a-d0b160ed2ead.vsidx
Binary file not shown.
Binary file added
BIN
+8.59 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/7d7f551b-f4b1-48c6-8a25-43e2b371a9c5.vsidx
Binary file not shown.
Binary file removed
BIN
-4.55 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/96f6db93-adea-4810-b847-029525334d4a.vsidx
Binary file not shown.
Binary file added
BIN
+6.48 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/c13a1ea7-3df5-4d90-9d60-168aaafc617e.vsidx
Binary file not shown.
Binary file removed
BIN
-4.67 KB
...tyOne/TwentyOne/.vs/TwentyOne/FileContentIndex/dc1bdaac-29c6-4920-93d8-69ab8f55949f.vsidx
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+32.3 KB
...entyOne/.vs/TwentyOne/copilot-chat/0b892cfe/sessions/4ea94e35-3e75-4add-846f-dc85b364885d
Binary file not shown.
Binary file added
BIN
+22.7 KB
...entyOne/.vs/TwentyOne/copilot-chat/0b892cfe/sessions/7477d355-9d94-4437-8397-0745505fe39f
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace TwentyOne | ||
{ | ||
public class TwentyOneDealer : Dealer | ||
{ | ||
private List<Card> _hand = new List<Card>(); | ||
public List<Card> Hand { get { return _hand; } set { _hand = value; } } | ||
public bool Stay { get; set; } | ||
public bool isBusted { get; set; } | ||
} | ||
} |
Oops, something went wrong.