コード例 #1
0
ファイル: monster.cpp プロジェクト: MitchellMarx/keeperrl
Monster::Monster(Creature* c, MonsterAIFactory f) : 
    creature(c), actor(f.getMonsterAI(c)) {}
コード例 #2
0
ファイル: monster.cpp プロジェクト: gustavsen/keeperrl
Monster::Monster(Creature* c, const MonsterAIFactory& f) : Controller(c), monsterAI(f.getMonsterAI(c)) {}
コード例 #3
0
ファイル: monster.cpp プロジェクト: hhirsch/keeperrl
Monster::Monster(Creature* c, MonsterAIFactory f) : Controller(c), actor(f.getMonsterAI(c)) {}