Exemplo n.º 1
0
 public void InitializeNew()
 {
     if (Status == GameTableItemStatus.Empty)
     {
         Status = GameTableItemStatus.Normal;
     }
     else
     {
         // Log warning
     }
 }
Exemplo n.º 2
0
 public GameTableItem(GameTableItemType type, GameTableItemStatus status)
 {
     Type   = type;
     Status = status;
 }