Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/script_engine/src/lib/script_engine/This.h @ 7657

Last change on this file since 7657 was 7654, checked in by bensch, 18 years ago

orxonox/script_engine: moved everything into cc-files

File size: 349 bytes
Line 
1#ifndef __THIS_H__
2#define __THIS_H__
3
4#include "VirtualMachine.h"
5
6// Sets the "this" global table that scripts use
7namespace OrxScript
8{
9
10  class LuaThis
11  {
12  public:
13    LuaThis (LuaVirtualMachine& vm, int iRef);
14    virtual ~LuaThis (void);
15
16  protected:
17    int oldReference;
18    LuaVirtualMachine& virtualMachine;
19  };
20}
21#endif // __THIS_H__
Note: See TracBrowser for help on using the repository browser.