mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
15 lines
140 B
V
15 lines
140 B
V
struct Board {
|
|
mut:
|
|
field [10][5]int
|
|
points int
|
|
shifts int
|
|
}
|
|
|
|
struct TileLine {
|
|
ypos int
|
|
mut:
|
|
field [5]int
|
|
points int
|
|
shifts int
|
|
}
|