21 lines
529 B
C#
21 lines
529 B
C#
#region Header
|
|
// _,-'/-'/
|
|
// . __,-; ,'( '/
|
|
// \. `-.__`-._`:_,-._ _ , . ``
|
|
// `:-._,------' ` _,`--` -: `_ , ` ,' :
|
|
// `---..__,,--' (C) 2023 ` -'. -'
|
|
// # Vita-Nex [http://core.vita-nex.com] #
|
|
// {o)xxx|===============- # -===============|xxx(o}
|
|
// # #
|
|
#endregion
|
|
|
|
namespace Server
|
|
{
|
|
public enum Direction4
|
|
{
|
|
North = Direction.North,
|
|
East = Direction.East,
|
|
South = Direction.South,
|
|
West = Direction.West
|
|
}
|
|
} |