add dockerfile

This commit is contained in:
Robin Appelman 2017-04-13 18:49:20 +02:00
commit 40dc4749cf
6 changed files with 21 additions and 1 deletions

View file

@ -30,7 +30,8 @@ interface TickPacket {
interface PlayPacket {
type: 'play';
session: string;
play: boolean;
play?: boolean;
tick?: boolean; //old sync server
}
type Packet = JoinPacket | CreatePacket | TickPacket | PlayPacket;