muddesigner/Mud Designer/MudEngine/GameObjects/Environment/TravelDirections.cs
Scionwest_cp b87136bc13 Project restructure completed. All editors now contained within a single Project.
Note that some things are still broken from the migration, but will be addressed.
2009-12-01 19:27:01 -08:00

13 lines
No EOL
226 B
C#

namespace MudDesigner.MudEngine.Objects.Environment
{
public enum AvailableTravelDirections
{
None = 0,
North,
South,
East,
West,
Up,
Down,
}
}