mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
17 lines
292 B
V
17 lines
292 B
V
module sokol
|
|
|
|
import sokol.c
|
|
import sokol.f
|
|
|
|
pub const used_import = c.used_import + f.used_import
|
|
|
|
/*
|
|
pub enum Key {
|
|
up=C.SAPP_KEYCODE_UP
|
|
left = C.SAPP_KEYCODE_LEFT
|
|
right =C.SAPP_KEYCODE_RIGHT
|
|
down = C.SAPP_KEYCODE_DOWN
|
|
escape = C.SAPP_KEYCODE_ESCAPE
|
|
space = C.SAPP_KEYCODE_SPACE
|
|
}
|
|
*/
|