您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

25 行
444 B

  1. using System;
  2. using SUISS.Storage;
  3. namespace SUISSEngine
  4. {
  5. public abstract class GameStats<T> : DailyAbstractState<T> where T : GameStats<T>
  6. {
  7. protected override void OnNewGameState()
  8. {
  9. }
  10. protected override string GetStorageKey()
  11. {
  12. return this.storageKey;
  13. }
  14. protected override StorageLifecycle GetLifecycle()
  15. {
  16. return StorageLifecycle.Game;
  17. }
  18. public string storageKey = "GameStats";
  19. }
  20. }