* Integrates Colyseus Server * Implements Basic Player movement * Player Remove/Update Events
16 lines
343 B
Haxe
16 lines
343 B
Haxe
//
|
|
// 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>();
|
|
}
|