Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- using System;
- using SUISS.Storage;
-
- namespace SUISSEngine
- {
- public abstract class GameStats<T> : DailyAbstractState<T> where T : GameStats<T>
- {
- protected override void OnNewGameState()
- {
- }
-
- protected override string GetStorageKey()
- {
- return this.storageKey;
- }
-
- protected override StorageLifecycle GetLifecycle()
- {
- return StorageLifecycle.Game;
- }
-
- public string storageKey = "GameStats";
- }
- }
|