dec2a14d27e2aad335d02bd607ff39e56d7b3b0d
[outofuni/tavern2.git] / lib / table.dart
1 class Coord {
2         int x;
3         int y;
4
5         Coord(this.x,this.y);
6 }
7
8 class Table {
9         String id;
10         String name;
11         int num;
12         int room;
13         Coord coord;
14         String type;
15
16         Table(this.id,this.name,this.num,this.room,this.coord,this.type);
17 }
18