8 lines
151 B
Python
8 lines
151 B
Python
|
|
import pyglet.window.key
|
|
|
|
state = pyglet.window.key.KeyStateHandler()
|
|
|
|
def init_key_handler(window):
|
|
global state
|
|
window.push_handlers(state)
|