You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 line
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. }