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

12 lines
238 B
C#
Raw Normal View History

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

namespace Stary.Evo.Example.Counter
{
public class CommandSub : AbstractCommand
{
protected override void OnExecute()
{
CounterApp.Interface.GetData<ICounterData>().Count.Value--;
}
}
}