您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 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. }