diff options
Diffstat (limited to 'source/models/State.hx')
-rw-r--r-- | source/models/State.hx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/models/State.hx b/source/models/State.hx new file mode 100644 index 0000000..4f89d35 --- /dev/null +++ b/source/models/State.hx @@ -0,0 +1,15 @@ +// +// THIS FILE HAS BEEN GENERATED AUTOMATICALLY +// DO NOT CHANGE IT MANUALLY UNLESS YOU KNOW WHAT YOU'RE DOING +// +// GENERATED USING @colyseus/schema 0.5.39 +// +package models; + +import io.colyseus.serializer.schema.Schema; + +class State extends Schema +{ + @:type("map", Player) + public var players:MapSchema<Player> = new MapSchema<Player>(); +} |