Version.IVersionHelper.cs 868 B

12345678910111213141516171819202122232425262728293031323334
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  6. //------------------------------------------------------------
  7. namespace GameFramework
  8. {
  9. public static partial class Version
  10. {
  11. /// <summary>
  12. /// 版本号辅助器接口。
  13. /// </summary>
  14. public interface IVersionHelper
  15. {
  16. /// <summary>
  17. /// 获取游戏版本号。
  18. /// </summary>
  19. string GameVersion
  20. {
  21. get;
  22. }
  23. /// <summary>
  24. /// 获取内部游戏版本号。
  25. /// </summary>
  26. int InternalGameVersion
  27. {
  28. get;
  29. }
  30. }
  31. }
  32. }