コード例 #1
0
ファイル: Cell.cs プロジェクト: V4lonforth/DungeonTower
        public void DetachFront()
        {
            ForegroundEntity entity = FrontEntity;

            FrontEntity = null;
            OnFrontDetach?.Invoke(this, entity);
        }
コード例 #2
0
ファイル: Cell.cs プロジェクト: V4lonforth/DungeonTower
 public void AttachToFront(ForegroundEntity entity)
 {
     FrontEntity = entity;
     OnFrontAttach?.Invoke(this, entity);
 }