X-Git-Url: https://hackdaworld.org/gitweb/?p=outofuni%2Ftavern2.git;a=blobdiff_plain;f=lib%2Ftable.dart;fp=lib%2Ftable.dart;h=dec2a14d27e2aad335d02bd607ff39e56d7b3b0d;hp=0000000000000000000000000000000000000000;hb=678f7561b74d47e36309ac4ee1007a326e4b7650;hpb=74001e08303ce797811fc91816a67c2006fe0a25 diff --git a/lib/table.dart b/lib/table.dart new file mode 100644 index 0000000..dec2a14 --- /dev/null +++ b/lib/table.dart @@ -0,0 +1,18 @@ +class Coord { + int x; + int y; + + Coord(this.x,this.y); +} + +class Table { + String id; + String name; + int num; + int room; + Coord coord; + String type; + + Table(this.id,this.name,this.num,this.room,this.coord,this.type); +} +