12345678910111213141516171819 |
- using OpenSEMI.Ctrlib.Controls;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_Core
- {
- public static class VenusGlobalEvents
- {
- public static event Action<Slot> SlotRightClickChangedEvent;
- public static void OnSlotRightClickChanged(Slot slot)
- {
- SlotRightClickChangedEvent?.Invoke(slot);
- }
- }
- }
|