aboutsummaryrefslogtreecommitdiff
path: root/source/models/Player.hx
diff options
context:
space:
mode:
Diffstat (limited to 'source/models/Player.hx')
-rw-r--r--source/models/Player.hx21
1 files changed, 21 insertions, 0 deletions
diff --git a/source/models/Player.hx b/source/models/Player.hx
new file mode 100644
index 0000000..1de9b3a
--- /dev/null
+++ b/source/models/Player.hx
@@ -0,0 +1,21 @@
+//
+// 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 Player extends Schema
+{
+ @:type("number")
+ public var x:Dynamic = 0;
+
+ @:type("number")
+ public var y:Dynamic = 0;
+
+ @:type("string")
+ public var name:String = "";
+}