This website requires JavaScript.
Explore
Help
Register
Sign In
iwnc2020
/
ProjectDDD
Watch
2
Star
0
Fork
0
You've already forked ProjectDDD
Code
Issues
Pull Requests
3
Actions
Packages
Projects
Releases
Wiki
Activity
b575c422cf
ProjectDDD
/
Assets
/
_DDD
/
_Scripts
/
GameFramework
/
EventBus
/
IEventHandler.cs
7 lines
115 B
C#
Raw
Normal View
History
Unescape
Escape
EventBus 패턴 구현
2025-07-16 09:21:12 +00:00
namespace
DDD
{
public
interface
IEventHandler
<
in
T
>
where
T
:
IEvent
{
updated EventBus
2025-07-17 08:15:40 +00:00
void
Invoke
(
T
evt
)
;
EventBus 패턴 구현
2025-07-16 09:21:12 +00:00
}
}
Reference in New Issue
Copy Permalink