Beispiel #1
0
        public void BuildingLevelUpFeedBack(object mark, object buildingType)
        {
            BuildingType type = ( BuildingType )buildingType;

            if (( ForceMark )mark == this.mark)
            {
                if (type == BuildingType.Institute)
                {
                    _view.InstituteLevelUpComplete();
                    DebugUtils.Log(DebugUtils.Type.BuildingLevelUp, "BattleViewController received feedBack.");
                }
                else
                {
                    //TODO: Maybe we will have more building can levelUp but now just institute.
                }
            }
        }