예제 #1
0
 public Figure(int x, int y, EFigure f, Player player)
 {
     this.player = player;
     this.x      = x;
     this.y      = y;
     this.id     = (int)f;
 }
예제 #2
0
 public Figure(int x, int y, EFigure f, Player player, bool inSleeve)
 {
     this.player   = player;
     this.x        = x;
     this.y        = y;
     this.id       = (int)f;
     this.inSleeve = inSleeve;
 }
예제 #3
0
 public LionFigure(int x, int y, EFigure f, Player player, bool inSleeve)
     : base(x, y, f, player, inSleeve)
 {
     this.player   = player;
     this.x        = x;
     this.y        = y;
     this.id       = (int)f;
     this.inSleeve = inSleeve;
 }
예제 #4
0
파일: Settings.cs 프로젝트: RockTF/Paint
 public void SetMode(EFigure newMode)
 {
     _settings.Mode = newMode;
 }