基于 Unity 2021.x
结构体可以实现接口
struct比class有更好的内存管理效率
public struct SubCountCommand : ICommand { public void Execute() { CounterMode.Count.Value--; } }
命令模式