mirror of
https://github.com/correl/riichi.git
synced 2025-01-09 11:09:41 +00:00
15 lines
142 B
Erlang
15 lines
142 B
Erlang
-record(tile, {
|
|
suit,
|
|
value
|
|
}).
|
|
|
|
-record(hand, {
|
|
tiles=[],
|
|
sets=[]
|
|
}).
|
|
|
|
-record(set, {
|
|
count,
|
|
tile,
|
|
open=true
|
|
}).
|