- Renamed FileSystem.FileSystem.cs to FileSystem.FileManager.cs
- Moved ValidateDataPaths() from Engine.cs to FileManager.cs - Moved GetDataPath() from Engine.cs to FileManager.cs - Moved SaveDataTypes out from Engine.cs into it's own file. MudEngine.FileSystem.SaveDataTypes.cs - Moved _CurrentRoom, _CurrentZone, _CurrentRealm and _ScriptEngine out from all editors containing those Fields, and placed them as static properties within Program.cs Room, Zone, Realm and ScriptEngine Properties - Created 3 new Interfaces. IGameObject, IQuest and IRuleSet. - Created QuestSetup class to begin working on Quest Editor at some point.
This commit is contained in:
parent
c1d60639f5
commit
379c6f844d
17 changed files with 327 additions and 239 deletions
12
Mud Designer/MudEngine/Interfaces/IRuleSet.cs
Normal file
12
Mud Designer/MudEngine/Interfaces/IRuleSet.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MudDesigner.MudEngine.Interfaces
|
||||
{
|
||||
public interface IRuleSet
|
||||
{
|
||||
void Initialize();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue