#ifndef PW_SCRIPT_HPP #define PW_SCRIPT_HPP #include #include #include namespace pw { class script { sol::state _lua; public: script(); ~script(); bool update(); void run(const char* s); }; } #endif