diff options
Diffstat (limited to 'src/script.hh')
| -rw-r--r-- | src/script.hh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/script.hh b/src/script.hh index 2825d6d..5b63f56 100644 --- a/src/script.hh +++ b/src/script.hh @@ -82,7 +82,17 @@ struct TReadScriptFile { struct TWriteScriptFile { // REGULAR FUNCTIONS // ========================================================================= - //TWriteScriptFile(void); + TWriteScriptFile(void); + ~TWriteScriptFile(void); + void open(char *FileName); + void close(void); + void error(char *Text); + void writeLn(void); + void writeText(char *Text); + void writeNumber(int Number); + void writeString(char *Text); + void writeCoordinate(int x ,int y ,int z); + void writeBytesequence(uint8 *Sequence, int Length); // DATA // ========================================================================= |
