-
Notifications
You must be signed in to change notification settings - Fork 9
事件系统
Hiram edited this page Apr 4, 2018
·
2 revisions
- 事件系统
public void TestMethod() { IEvent iEvent = Center.Get<EventComponent>(); iEvent.Regist("key", Handler); iEvent.Dispatch("key", 1, "hello"); } void Handler(object[] args) { var t = (int)args[0]; var tt = (string)args[1]; Assert.IsTrue(t == 1); Assert.IsTrue(tt == "hello"); }