mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Added .GetName extension method which will show human readable hand values in text. Also completely moved .betdraw the the new deck implementation. A renamed to Ace
This commit is contained in:
@@ -14,4 +14,7 @@ public sealed class RegularCard : NewCard<RegularSuit, RegularValue>
|
||||
|
||||
public override int GetHashCode()
|
||||
=> Suit.GetHashCode() * 17 + Value.GetHashCode();
|
||||
|
||||
public override string ToString()
|
||||
=> $"{Value.ToString()}-{Suit.ToString()}";
|
||||
}
|
Reference in New Issue
Block a user