Exemplo n.º 1
0
 public void SetData(GameNumber game)
 {
     this.id       = game.id;
     this.number   = game.number;
     this.PropType = game.PropType;
 }
Exemplo n.º 2
0
 public GameNumber(BaseAdditionalAttribute attribute)
 {
     id            = attribute.id;
     number        = attribute.number;
     this.PropType = attribute.PropType;
 }
Exemplo n.º 3
0
 public void SetNull()
 {
     id       = 0;
     number   = 0;
     PropType = AdditionalAttributeEnum.none;
 }
Exemplo n.º 4
0
 public GameNumber(int id, int number, AdditionalAttributeEnum PropType)
 {
     this.id       = id;
     this.number   = number;
     this.PropType = PropType;
 }