コード例 #1
0
ファイル: MatchRuleSet.cs プロジェクト: BeauPrime/BeauUtil
 public MatchRuleSet(int inCapacity, MatchRuleSet <T> inInheritFrom)
 {
     m_Rules       = new List <T>(inCapacity);
     m_InheritFrom = inInheritFrom;
 }
コード例 #2
0
ファイル: MatchRuleSet.cs プロジェクト: BeauPrime/BeauUtil
 public MatchRuleSet(MatchRuleSet <T> inInheritFrom)
 {
     m_Rules       = new List <T>();
     m_InheritFrom = inInheritFrom;
 }