Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
27
Scripts/SubSystem/VitaNex/Core/Misc/Axis.cs
Normal file
27
Scripts/SubSystem/VitaNex/Core/Misc/Axis.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user