コード例 #1
0
ファイル: VoidCreature.cs プロジェクト: nogu3ira/xrunuo
 public SurvivalPathHandler(VoidCreature owner, Type evolutionType, int requiredPoints)
     : base(owner, evolutionType, requiredPoints)
 {
 }
コード例 #2
0
ファイル: VoidCreature.cs プロジェクト: nogu3ira/xrunuo
 public EvolutionHandler(VoidCreature owner, Type evolutionType, int requiredPoints)
 {
     m_Owner          = owner;
     m_EvolutionType  = evolutionType;
     m_RequiredPoints = requiredPoints;
 }
コード例 #3
0
ファイル: VoidCreature.cs プロジェクト: nogu3ira/xrunuo
 public GroupingPathHandler(VoidCreature owner, Type evolutionType, int requiredPoints)
     : base(owner, evolutionType, requiredPoints)
 {
 }
コード例 #4
0
ファイル: VoidCreature.cs プロジェクト: nogu3ira/xrunuo
 public EvolutionTimer(VoidCreature owner)
     : base(TimeSpan.FromSeconds(10.0), TimeSpan.FromSeconds(10.0))
 {
     m_Owner = owner;
 }