Did some refactoring with blackjack and probably have completely broken it

This commit is contained in:
barelyprofessional
2026-01-02 21:25:36 -06:00
parent fcd057e980
commit b0473d68ab
2 changed files with 71 additions and 128 deletions

View File

@@ -2,11 +2,6 @@
public class BlackjackGameMetaModel
{
/// <summary>
/// The wager ID associated with this game
/// </summary>
public required int WagerId { get; set; }
/// <summary>
/// Player's hand
/// </summary>
@@ -22,11 +17,6 @@ public class BlackjackGameMetaModel
/// </summary>
public required List<Card> Deck { get; set; }
/// <summary>
/// When the game was started
/// </summary>
public required DateTimeOffset GameStarted { get; set; }
/// <summary>
/// Whether player has doubled down (can only hit once more)
/// </summary>