Beispiel #1
0
 public MatchRuleSet(int inCapacity, MatchRuleSet <T> inInheritFrom)
 {
     m_Rules       = new List <T>(inCapacity);
     m_InheritFrom = inInheritFrom;
 }
Beispiel #2
0
 public MatchRuleSet(MatchRuleSet <T> inInheritFrom)
 {
     m_Rules       = new List <T>();
     m_InheritFrom = inInheritFrom;
 }