WutheringWaves/Core/Config/IConfig.cs

7 lines
112 B
C#
Raw Normal View History

namespace Core.Config;
public interface IConfig
{
ConfigType Type { get; }
int Identifier { get; }
}