public Packet8Position(TcpClientm d, sbyte id, Vector3 pos, Vector2 rot) { this.data = d; this.id = id; this.pos = pos; this.rot = rot; }
public Packet7Spawn(TcpClientm d, sbyte id, string name, Vector3 pos, Vector2 rot) { this.data = d; this.id = id; this.name = name; this.pos = pos; this.rot = rot; }
public void onPosition(Vector3 pos, Vector2 rot) { Position = pos; Rotation = rot; }