fry
209a4f5caf
Display what the API gives us as the board + pieces. Co-authored-by: David Frymoyer <david.frymoyer@gmail.com> Reviewed-on: #4 Co-authored-by: fry <david.frymoyer@gmail.com> Co-committed-by: fry <david.frymoyer@gmail.com>
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
export interface Cell {
|
|
piece?: string;
|
|
terrain: boolean;
|
|
hidden: boolean;
|
|
empty: boolean;
|
|
} |