blob: 22fd873851537153f4772b75238a7f07205fbcc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Xml;
namespace XMainClient
{
internal class AIRuntimeRemoveBuff : AIRunTimeNodeAction
{
public AIRuntimeRemoveBuff(XmlElement node) : base(node)
{
}
}
}
|