diff options
| author | Eugene Sandulenko | 2004-08-11 00:27:43 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2004-08-11 00:27:43 +0000 | 
| commit | 57b158214949fbb24b37e23d0adeec2c52bbf86a (patch) | |
| tree | 9f80672dc5bfc6674831404cbdc239011e59a844 /saga/script.h | |
| parent | aba3176b0edbe171ee1a73ee48b0aff18a81946a (diff) | |
| download | scummvm-rg350-57b158214949fbb24b37e23d0adeec2c52bbf86a.tar.gz scummvm-rg350-57b158214949fbb24b37e23d0adeec2c52bbf86a.tar.bz2 scummvm-rg350-57b158214949fbb24b37e23d0adeec2c52bbf86a.zip | |
Move CF_ commands to class and call them from wrappers. This will let us
remove global _vm later.
svn-id: r14552
Diffstat (limited to 'saga/script.h')
| -rw-r--r-- | saga/script.h | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/saga/script.h b/saga/script.h index 883ba872dd..38e8e9ba5e 100644 --- a/saga/script.h +++ b/saga/script.h @@ -110,6 +110,9 @@ public:  	void setBuffer(int idx, R_SCRIPT_DATABUF *ptr) { _dataBuf[idx] = ptr; }  	R_SCRIPT_DATABUF *dataBuffer(int idx) { return _dataBuf[idx]; }  	YS_DL_LIST *threadList() { return _threadList; } + +	void scriptInfo(int argc, char *argv[]); +	void scriptExec(int argc, char *argv[]);  protected:  	bool _initialized; @@ -121,7 +124,7 @@ protected:  	R_SCRIPTDATA *_currentScript;  	R_SCRIPT_DATABUF *_dataBuf[R_SCRIPT_DATABUF_NUM];  	YS_DL_LIST *_threadList; -	 +  public:  	int _dbg_singlestep;  	int _dbg_dostep; | 
