コード例 #1
0
ファイル: Bucket.cs プロジェクト: anyoun/metageta
 public Bucket(MGTag tag)
 {
     m_Tag = tag;
 }
コード例 #2
0
ファイル: Browser.cs プロジェクト: anyoun/metageta
        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();
        }