123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include "base/CCEventFocus.h"
- NS_CC_BEGIN
- EventFocus::EventFocus(ui::Widget *widgetLoseFocus, ui::Widget* widgetGetFocus)
- :Event(Type::FOCUS),
- _widgetGetFocus(widgetGetFocus),
- _widgetLoseFocus(widgetLoseFocus)
- {
-
- }
- NS_CC_END
|