summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XLuaLong.cs
blob: c5993aed31b0ce29e68f31eb40544d36676ff533 (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
using System;

namespace XUtliPoolLib
{
	public class XLuaLong
	{
		public string str;

		public XLuaLong(string _str)
		{
			this.str = _str;
		}

		public ulong Get()
		{
			bool flag = string.IsNullOrEmpty(this.str);
			if (flag)
			{
				XSingleton<XDebug>.singleton.AddErrorLog("", null, null, null, null, null);
			}
			return ulong.Parse(this.str);
		}
	}
}