mirror of
https://github.com/Stone-Red-Code/se-poker.git
synced 2026-09-04 09:06:21 +02:00
6 lines
91 B
Go
6 lines
91 B
Go
package main
|
|
|
|
type Card struct {
|
|
Suit string // H, D, C, S
|
|
Value int // 2-14 (A=14)
|
|
} |