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