summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/GuildPosition.cs
blob: 96ba281982906295106c5f6a13287978cd52d5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace XMainClient
{
	internal enum GuildPosition
	{
		GPOS_INVALID = -1,
		GPOS_LEADER,
		GPOS_VICELEADER,
		GPOS_OFFICER,
		GPOS_ELITEMEMBER,
		GPOS_MEMBER,
		GPOS_COUNT
	}
}