Module: GLApp::Engine
- Defined in:
- lib/glapp.rb
Instance Method Summary collapse
- #draw ⇒ Object
- #keyboard_down(key, modifiers) ⇒ Object
- #keyboard_up(key, modifiers) ⇒ Object
- #mouse_click(button, state, x, y) ⇒ Object
- #mouse_dragging_motion(x, y) ⇒ Object
- #mouse_motion(x, y) ⇒ Object
- #mouse_passive_motion(x, y) ⇒ Object
- #setup ⇒ Object
- #special_keyboard_down(key, modifiers) ⇒ Object
- #special_keyboard_up(key, modifiers) ⇒ Object
- #update(seconds) ⇒ Object
Instance Method Details
#draw ⇒ Object
186 |
# File 'lib/glapp.rb', line 186 def draw() end |
#keyboard_down(key, modifiers) ⇒ Object
187 |
# File 'lib/glapp.rb', line 187 def keyboard_down(key, modifiers) end |
#keyboard_up(key, modifiers) ⇒ Object
188 |
# File 'lib/glapp.rb', line 188 def keyboard_up(key, modifiers) end |
#mouse_click(button, state, x, y) ⇒ Object
191 |
# File 'lib/glapp.rb', line 191 def mouse_click(, state, x, y) end |
#mouse_dragging_motion(x, y) ⇒ Object
192 |
# File 'lib/glapp.rb', line 192 def mouse_dragging_motion(x, y) end |
#mouse_motion(x, y) ⇒ Object
194 |
# File 'lib/glapp.rb', line 194 def mouse_motion(x, y) end |
#mouse_passive_motion(x, y) ⇒ Object
193 |
# File 'lib/glapp.rb', line 193 def mouse_passive_motion(x, y) end |
#setup ⇒ Object
184 |
# File 'lib/glapp.rb', line 184 def setup() end |
#special_keyboard_down(key, modifiers) ⇒ Object
189 |
# File 'lib/glapp.rb', line 189 def special_keyboard_down(key, modifiers) end |
#special_keyboard_up(key, modifiers) ⇒ Object
190 |
# File 'lib/glapp.rb', line 190 def special_keyboard_up(key, modifiers) end |
#update(seconds) ⇒ Object
185 |
# File 'lib/glapp.rb', line 185 def update(seconds) end |