summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/DragonCrusageGateData.cs
blob: 4da2b06e39bdf7a47256fc74543bf0af6672815a (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;
using KKSG;
using XUtliPoolLib;

namespace XMainClient
{
	internal class DragonCrusageGateData
	{
		public uint SceneID;

		public DragonExpList.RowData expData;

		public SceneTable.RowData sceneData;

		public DEProgress deProgress;

		public int allcount = 0;

		public int leftcount = 0;

		public uint SealLevel = 0u;

		public uint Chapter = 0u;
	}
}