View all by Giavapps
Giavapps
Follow Giavapps
Follow
Following Giavapps
Following
Add To Collection
Collection
Comments
Devlog
Related games
Related
Giavapps Event System
←
Return to Giavapps Event System
Devlog
Event Manager
September 27, 2020
by
Giavapps
1
#giavapps, #event, #system, #manager
THE EVENT MANAGER EventManager is a struct that takes care of triggering events for the right objects. It manages the Event Listeners you add and it is the most important struct of the system. Usually...
Continue reading
Event Listener
September 27, 2020
by
Giavapps
1
#giavapps, #event, #system, #listener
THE EVENT LISTENER EventListener is the base struct from which all Event Listeners should inherit. The EventListener struct contains information about the Object in which it was first created and the...
Continue reading
Event Type
September 27, 2020
by
Giavapps
1
#giavapps, #event, #system, #type
THE EVENT TYPES The first thing to do to properly configure the Giavapps Event System is to create your list of events that you can have in your application . A very simple way is to use an enum for e...
Continue reading