miniswig supports int, float and string constants now
[supertux.git] / src / scripting / wrapper.hpp
1 /**
2  * WARNING: This file is automatically generated from:
3  *  'src/scripting/wrapper.interface.hpp'
4  * DO NOT CHANGE
5  */
6 #ifndef __supertux_WRAPPER_H__
7 #define __supertux_WRAPPER_H__
8
9 #include "wrapper_util.hpp"
10
11 extern WrappedFunction supertux_global_functions[];
12 extern WrappedClass supertux_classes[];
13 extern WrappedConstant<int> supertux_int_constants[];
14 extern WrappedConstant<float> supertux_float_constants[];
15 extern WrappedConstant<const char*> supertux_string_constants[];
16
17 static inline void register_supertux_wrapper(HSQUIRRELVM v)
18 {
19     register_functions(v, supertux_global_functions);
20     register_classes(v, supertux_classes);
21     register_constants(v, supertux_int_constants);
22     register_constants(v, supertux_float_constants);
23     register_constants(v, supertux_string_constants);
24 }
25
26 #endif
27