Esempio n. 1
0
 public DataNode(DataNodeGroup parent, string name)
 {
     m_parent = parent;
     m_name = name;
     m_hlstClassName = new HashSet<string>();
     m_hlstChildNode = new HashSet<string>();
     m_mapDataAttrGroup = new Dictionary<string, DataAttrGroup>();
 }
Esempio n. 2
0
        public CtrlDef_T(DataNodeGroup parent, string name)
            : base(parent, name)
        {
            m_mapApprSuffix = new Dictionary<string, string>();
            m_mapApprPrefix = new Dictionary<string, string>();

            initData();
        }
Esempio n. 3
0
 public SkinDef_T(DataNodeGroup parent, string name)
     : base(parent, name)
 {
 }