Вы не можете выбрать более 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. }