示例#1
0
 public Packet8Position(TcpClientm d, sbyte id, Vector3 pos, Vector2 rot)
 {
     this.data = d;
     this.id = id;
     this.pos = pos;
     this.rot = rot;
 }
示例#2
0
 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;
 }
示例#3
0
 public void onPosition(Vector3 pos, Vector2 rot)
 {
     Position = pos;
     Rotation = rot;
 }
示例#4
0
 public void onCBlock(Vector3 pos, byte mod, byte type)
 {
     World.worlds[level].Change(pos, type, mod, (sbyte)Net.id);
 }
示例#5
0
 public Packet6SetBlock(TcpClientm d, Vector3 pos, byte Blocktype)
 {
     this.data = d;
     this.pos = pos;
     this.Blocktype = Blocktype;
 }
示例#6
0
 public Packet4LevelFin(TcpClientm d, Vector3 size)
 {
     this.data = d;
     this.size = size;
 }