Fixed oversights in collision code. More sound control.
[luagame.git] / funcs_input.h
blob5a89888915538401347babae60ab86bf9fc36df5
1 /*
2 Copyright (c)2006-2007 - Brett Lajzer
4 See LICENSE for license information.
5 */
6 #ifndef _FUNCS_INPUT_H_
7 #define _FUNCS_INPUT_H_
8 #include "lua.hpp"
10 //returns the number of joysticks
11 int l_num_joysticks(lua_State *L);
13 //get mouse position
14 int l_mouse_state(lua_State *L);
16 //return an event to lua
17 int l_get_event(lua_State *L);
19 #endif