riichi/include/riichi.hrl

21 lines
187 B
Erlang
Raw Normal View History

2012-05-04 12:18:08 +00:00
-record(tile, {
suit,
value
}).
-record(hand, {
tiles=[],
sets=[]
}).
-record(set, {
count,
tile,
open=true
}).
2012-07-03 02:05:05 +00:00
-record(seq, {
tiles,
open=true
}).