Files
plugin-library/Assets/00.StaryEvo/~Samples/Runtime/CounterApp/Script/CounterApp.cs
2025-03-31 11:19:27 +08:00

15 lines
368 B
C#

namespace Stary.Evo.Example.Counter
{
public class CounterApp : Architecture<CounterApp>
{
protected override void Init()
{
RegisterSystem<IAchievementSystem>(new AchievementSystem());
RegisterData<ICounterData>(new CounterData());
RegisterUtility<IStorage>(new PlayerPrefsStorage());
}
}
}