コード例 #1
0
 public PlayerAttackEventArgs(Int64 uniqueID, int posX, int posY, Player.FacingDirections facingDirection)
 {
     this.uniqueID        = uniqueID;
     this.posX            = posX;
     this.posY            = posY;
     this.facingDirection = facingDirection;
 }
コード例 #2
0
 public MovePacket(Int64 uid, Int32 posX, Int32 posY, Player.FacingDirections facingDirection)
 {
     this.uid             = uid;
     this.posX            = posX;
     this.posY            = posY;
     this.facingDirection = facingDirection;
 }
コード例 #3
0
 public PlayerPacket(String name, Int64 uid, Int32 posX, Int32 posY, Player.FacingDirections facingDirection)
 {
     this.name            = name;
     this.uid             = uid;
     this.PosX            = posX;
     this.PosY            = posY;
     this.facingDirection = facingDirection;
 }