コード例 #1
0
ファイル: Game.cs プロジェクト: picque-g/Electric-Potatoe-TD
 public piece(int x1, int y1, Tetris_color col, Direction_piece stat, Type_piece typ)
 {
     x = x1;
     y = y1;
     color = col;
     statut = stat;
     type = typ;
 }
コード例 #2
0
ファイル: Game.cs プロジェクト: picque-g/Electric-Potatoe-TD
 public piece(piece copy)
 {
     x = copy.x;
     y = copy.y;
     color = copy.color;
     statut = copy.statut;
     type = copy.type;
 }
コード例 #3
0
ファイル: Game1.cs プロジェクト: picque-g/Electric-Potatoe-TD
 public using_color(Tetris_color color, Color value)
 {
     _color = color;
     _value = value;
 }