Method: Rubygame::EventActions::MultiAction#perform
- Defined in:
- lib/rubygame/event_actions.rb
#perform(owner, event) ⇒ Object
Performs all the sub-actions, in the order they were given, passing in the owner and event to each one.
198 199 200 |
# File 'lib/rubygame/event_actions.rb', line 198 def perform( owner, event ) @actions.each { |action| action.perform( owner, event ) } end |