using Blue; public struct Patch_VideoCommand : ICommand { private bool set; public Patch_VideoCommand(bool set) { this.set = set; } public void OnExcute() { this.SendEvent(new Patch_VideoEvent() { set = this.set }); } }