Files
plugin-library/Assets/00.StaryEvo/Samples/Runtime/CounterApp/Script/CounterApp.cs

15 lines
368 B
C#
Raw Normal View History

2025-03-31 11:16:52 +08:00

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());
}
}
}