mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
28 lines
582 B
C#
28 lines
582 B
C#
namespace TEngine
|
|
{
|
|
public static partial class Version
|
|
{
|
|
/// <summary>
|
|
/// 版本号辅助器接口。
|
|
/// </summary>
|
|
public interface IVersionHelper
|
|
{
|
|
/// <summary>
|
|
/// 获取游戏版本号。
|
|
/// </summary>
|
|
string GameVersion
|
|
{
|
|
get;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取内部游戏版本号。
|
|
/// </summary>
|
|
int InternalGameVersion
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|
|
}
|