MudCompiler: No longer works. Needs to be re-wrote to support the new Alpha 2.0 engine MudDesigenr: Removed most of the forms since we are not working on it. Only form left is Project Manager, which will be removed shortly as well. MudGame: No longer runs. All of the source code was removed due to MudEngine Alpha 2.0 source changing drastically. MudEngine: Alpha 2.0 source code finally checked-in. It contains the full re-build of the engine. A lot of new abstract classes have been added.
21 lines
488 B
C#
21 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MudEngine.Core
|
|
{
|
|
public interface IEnvironment : IObject
|
|
{
|
|
bool IsSafe { get; set; }
|
|
List<string> CurrentOccupants { get; }
|
|
|
|
string Smell { get; set; }
|
|
string Feel { get; set; }
|
|
string Listen { get; set; }
|
|
|
|
void OnOccupantEnter(ICharacter character);
|
|
|
|
void OnOccupantExit(ICharacter character);
|
|
}
|
|
}
|