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

namespace XUtliPoolLib
{
	public interface ILuaGameInfo
	{
		string name { get; set; }

		uint exp { get; set; }

		uint maxexp { get; set; }

		uint level { get; set; }

		int ppt { get; set; }

		uint coin { get; set; }

		uint dia { get; set; }

		uint energy { get; set; }

		uint draggon { get; set; }
	}
}