コード例 #1
0
ファイル: Player.cs プロジェクト: barneyCr/color_run
 public void RemoveCell(PlayerCell c)
 {
     lock (this.Cells)
     {
         this.Cells.Remove(c);
         Program.GameManager.PlayerCells.Remove(c.CID);
     }
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: barneyCr/color_run
 public void AddCell(PlayerCell c)
 {
     lock (this.Cells)
     {
         this.Cells.Add(c);
         Program.GameManager.PlayerCells.Add(c.CID, c);
     }
 }