示例#1
0
        public ToolsetViewModel()
        {
            IsModuleOpened = false;
            CurrentObjectMode = "";
            CurrentObjectTreeSelector = "";
            ActiveModule = new GameModule(true);
            ActiveArea = new Area(true);
            ActiveConversation = new Conversation(true);
            ActiveCreature = new Creature(true);
            ActiveItem = new Item(true);
            ActivePlaceable = new Placeable(true);
            ActiveScript = new Script();
            ActiveTileset = new Tileset();
            ModuleList = new List<GameModule>();
            AvailableContentPackages = new List<ContentPackage>();
            AttachedContentPackages = new List<ContentPackage>();
            TilesetSpriteSheetsList = new List<DropDownListUIObject>();
            ItemList = new List<DropDownListUIObject>();
            ScriptList = new List<DropDownListUIObject>();
            GenderList = new List<DropDownListUIObject>();
            ConversationList = new List<DropDownListUIObject>();
            RaceList = new List<DropDownListUIObject>();
            FactionList = new List<DropDownListUIObject>();
            TilesetList = new List<DropDownListUIObject>();

            LevelRequirementList = new List<LevelRequirement>();
            AbilityList = new List<Ability>();
            SkillList = new List<Skill>();
        }
示例#2
0
 public void ChangeArea(Area newArea)
 {
 }