Refactor into classes

This commit is contained in:
Stone_Red
2025-12-22 16:45:48 +01:00
parent 1928dcd24f
commit fc5e2afaac
6 changed files with 440 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
package main
type Card struct {
Suit string // H, D, C, S
Value int // 2-14 (A=14)
}