blob: 164cc9f305e56096dcf8cf0d8e986a4b01865db2 (
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
33
34
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
internal class XArenaDocument : XDocComponent
{
public override uint ID
{
get
{
return XArenaDocument.uuID;
}
}
public bool RedPoint { get; set; }
public new static readonly uint uuID = XSingleton<XCommon>.singleton.XHash("ArenaDocument");
public static XTableAsyncLoader AsyncLoader = new XTableAsyncLoader();
public static SkillCombo SkillComboTable = new SkillCombo();
public static void Execute(OnLoadedCallback callback = null)
{
XArenaDocument.AsyncLoader.AddTask("Table/SkillCombo", XArenaDocument.SkillComboTable, false);
XArenaDocument.AsyncLoader.Execute(callback);
}
protected override void OnReconnected(XReconnectedEventArgs arg)
{
}
}
}
|