blob: 35d35e9049bd0b6fb2debcfce7aee0654a03ab87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace XUtliPoolLib
{
public interface IXDummy
{
uint TypeID { get; }
ulong ID { get; }
bool Deprecated { get; set; }
void ResetAnimation();
void SetupUIDummy(bool ui);
}
}
|