- More work on scripting interface
[supertux.git] / src / scripting / script_interpreter.h
1 #ifndef __SCRIPT_INTERPRETER_H__
2 #define __SCRIPT_INTERPRETER_H__
3
4 class ScriptInterpreter
5 {
6 public:
7     ScriptInterpreter();
8     ~ScriptInterpreter();
9
10     void load_script(const std::istream& in);
11     void run_script();
12     void resume_script();
13     bool script_suspended() const;
14 };
15
16 #endif
17