public MatchRuleSet(int inCapacity, MatchRuleSet <T> inInheritFrom) { m_Rules = new List <T>(inCapacity); m_InheritFrom = inInheritFrom; }
public MatchRuleSet(MatchRuleSet <T> inInheritFrom) { m_Rules = new List <T>(); m_InheritFrom = inInheritFrom; }