Files
abysmal-isle/Scripts/SubSystem/VitaNex/Core/Misc/Axis.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

27 lines
556 B
C#

#region Header
// _,-'/-'/
// . __,-; ,'( '/
// \. `-.__`-._`:_,-._ _ , . ``
// `:-._,------' ` _,`--` -: `_ , ` ,' :
// `---..__,,--' (C) 2023 ` -'. -'
// # Vita-Nex [http://core.vita-nex.com] #
// {o)xxx|===============- # -===============|xxx(o}
// # #
#endregion
#region References
using System;
#endregion
namespace VitaNex
{
[Flags]
public enum Axis
{
None = 0x0,
Vertical = 0x1,
Horizontal = 0x2,
Both = Vertical | Horizontal
}
}