server-master/srcs/WingsAPI.Packets/Enums/MinilandState.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
191 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.Enums
{
public enum MinilandState : byte
{
OPEN = 0,
PRIVATE = 1,
LOCK = 2
}
}