12345678910111213141516171819202122232425262728293031323334 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace GameFramework
- {
- public static partial class Version
- {
- /// <summary>
- /// 版本号辅助器接口。
- /// </summary>
- public interface IVersionHelper
- {
- /// <summary>
- /// 获取游戏版本号。
- /// </summary>
- string GameVersion
- {
- get;
- }
- /// <summary>
- /// 获取内部游戏版本号。
- /// </summary>
- int InternalGameVersion
- {
- get;
- }
- }
- }
- }
|