1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-05 16:47:19 +02:00
openrw/rwengine/include/script/modules/VMModule.hpp
Daniel Evans 39ff9df337 Refactor script system to bind named functions.
Replace ugly macros with named functions and binding to script modules
2015-01-16 02:32:31 +00:00

11 lines
157 B
C++

#ifndef _VM_MODULE_HPP_
#define _VM_MODULE_HPP_
#include <script/ScriptModule.hpp>
class VMModule : public ScriptModule
{
public:
VMModule();
};
#endif