コード例 #1
0
ファイル: Weapon.cs プロジェクト: DutchSoldier/FHSICT
 public Weapon(Game game, Point location)
     : base(game, location)
 {
     this.game = game;
     this.location = location;
     pickedUp = false;
 }
コード例 #2
0
ファイル: Bow.cs プロジェクト: VaidasKrl/The-quest-game
 public Bow(Game game, Point location)
     : base(game, location)
 {
 }
コード例 #3
0
ファイル: Form1.cs プロジェクト: VaidasKrl/The-quest-game
 private void Form1_Load(object sender, EventArgs e)
 {
     game = new Game(new Rectangle(78, 57, 420, 155));
     game.NewLevel(random);
     UpdateCharacters();
 }
コード例 #4
0
ファイル: Ghost.cs プロジェクト: DutchSoldier/FHSICT
 public Ghost(Game game, Point location)
     : base(game, location, 8)
 { }
コード例 #5
0
ファイル: Mover.cs プロジェクト: VaidasKrl/The-quest-game
 public Mover(Game game, Point location)
 {
     this.game = game;
     this.location = location;
 }
コード例 #6
0
ファイル: Weapon.cs プロジェクト: VaidasKrl/The-quest-game
 public Weapon(Game game, Point location)
     : base(game, location)
 {
     pickedUp = false;
 }
コード例 #7
0
ファイル: RedPotion.cs プロジェクト: VaidasKrl/The-quest-game
 public RedPotion(Game game, Point location)
     : base(game, location)
 {
     Used = false;
 }
コード例 #8
0
ファイル: Ghoul.cs プロジェクト: DutchSoldier/FHSICT
 public Ghoul(Game game, Point location)
     : base(game, location, 10)
 {
 }
コード例 #9
0
ファイル: Sword.cs プロジェクト: DutchSoldier/FHSICT
 public Sword(Game game, Point location)
 : base(game, location) { }
コード例 #10
0
ファイル: Enemy.cs プロジェクト: DutchSoldier/FHSICT
 public Enemy(Game game, Point location, int hitPoints)
     : base(game, location) { this.hitPoints = hitPoints; }
コード例 #11
0
ファイル: Player.cs プロジェクト: JoeMarsh/The-Quest
 public Player(Game game, Point location)
     : base(game, location)
 {
     HitPoints = 10;
 }
コード例 #12
0
ファイル: Weapon.cs プロジェクト: JoeMarsh/The-Quest
 public Mace(Game game, Point location)
     : base(game, location)
 {
 }
コード例 #13
0
ファイル: Weapon.cs プロジェクト: JoeMarsh/The-Quest
 public BluePotion(Game game, Point location)
     : base(game, location)
 {
 }
コード例 #14
0
ファイル: Weapon.cs プロジェクト: JoeMarsh/The-Quest
 public RedPotion(Game game, Point location)
     : base(game, location)
 {
 }
コード例 #15
0
ファイル: Enemy.cs プロジェクト: JoeMarsh/The-Quest
 public Bat(Game game, Point location)
     : base(game, location, 6)
 {
 }