summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/DragonGuildApproveSetting.cs
blob: 68026142e4252378ddb6b20998763d8812280301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;

namespace XMainClient
{
	internal class DragonGuildApproveSetting
	{
		public uint PPT;

		public bool autoApprove;

		public string GetStrPPT()
		{
			bool flag = this.PPT == 0u;
			string result;
			if (flag)
			{
				result = "";
			}
			else
			{
				result = this.PPT.ToString();
			}
			return result;
		}
	}
}