コード例 #1
0
ファイル: EmptyCell.cs プロジェクト: RatushnenkoV/TheGame
 void setType(EmptyCellType type)
 {
     this.type = type;
     sprite = Resources.Load(type.ToString(), typeof(Sprite)) as Sprite;
 }
コード例 #2
0
 void setType(EmptyCellType type)
 {
     this.type = type;
     sprite    = Resources.Load(type.ToString(), typeof(Sprite)) as Sprite;
 }
コード例 #3
0
ファイル: EmptyCell.cs プロジェクト: RatushnenkoV/TheGame
 public EmptyCell(EmptyCellType type)
 {
     setType(type);
 }
コード例 #4
0
 public EmptyCell(EmptyCellType type)
 {
     setType(type);
 }