summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XLevelInfo.cs
blob: 000685c2232ef42a9987ae3db17b5c520b1d4061 (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
27
28
29
30
31
32
using System;

namespace XMainClient
{
	internal class XLevelInfo
	{
		public string infoName;

		public float x;

		public float y;

		public float z;

		public float face;

		public float width;

		public float height;

		public float thickness;

		public bool enable;

		public XLevelInfo()
		{
			this.infoName = "";
			this.x = (this.y = (this.z = (this.face = (this.width = (this.height = (this.thickness = 0f))))));
			this.enable = false;
		}
	}
}