#ifndef __THIS_H__ #define __THIS_H__ #include "VirtualMachine.h" // Sets the "this" global table that scripts use namespace OrxScript { class LuaThis { public: LuaThis (LuaVirtualMachine& vm, int iRef); virtual ~LuaThis (void); protected: int oldReference; LuaVirtualMachine& virtualMachine; }; } #endif // __THIS_H__