コード例 #1
0
ファイル: RogueBot.cs プロジェクト: GoodSky/game-nuggets
 // Constructor sets the default stats for this turn
 // We probably want to be able to serialize these stats for different level loadings
 public RogueBot(double x, double y)
     : base(x, y, 50, 50)
 {
     myStats = new RogueBotStats();
 }
コード例 #2
0
ファイル: RogueBot.cs プロジェクト: GoodSky/rogue-bot
 // Constructor sets the default stats for this turn
 // We probably want to be able to serialize these stats for different level loadings
 public RogueBot(double x, double y)
     : base(x, y, 50, 50)
 {
     myStats = new RogueBotStats();
 }