Example #1
0
 public PlayerDTO(int id, String connectionId, PointF position, PlayerFlyweight flyweight)
 {
     this.id           = id;
     this.connectionId = connectionId;
     this.position     = position;
     this.Flyweight    = flyweight;
 }
Example #2
0
 public PlayerDTO(int id, PointF position, PlayerFlyweight flyweight)
 {
     this.id        = id;
     this.position  = position;
     this.Flyweight = flyweight;
 }