1 #ifndef __SCRIPT_INTERPRETER_H__
2 #define __SCRIPT_INTERPRETER_H__
8 class ScriptInterpreter
14 void load_script(std::istream& in, const std::string& sourcename = "");
17 void expose_object(void* object, const std::string& name,
18 const std::string& type);
20 void suspend(float seconds);
23 static ScriptInterpreter* current()
30 static ScriptInterpreter* _current;