示例#1
0
文件: Bucket.cs 项目: anyoun/metageta
 public Bucket(MGTag tag)
 {
     m_Tag = tag;
 }
示例#2
0
        public void Push(MGTag tag)
        {
            if (m_CurrentLocation.Count >= m_DimensionPath.Count)
                throw new Exception();
            if (NextTagName != tag.Name)
                throw new Exception();

            m_CurrentLocation.Add(tag);
            UpdateCurrent();
        }