diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-05-22 11:40:04 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-05-22 11:40:04 -0300 |
| commit | 297e8450d80411d81f0aaeee642053354125bd6d (patch) | |
| tree | cba665717e133b288b51a960e0401652ab73019a /src/script.hh | |
| parent | de848a4131beb288335b6aaa29c2a6a439c50e0e (diff) | |
| download | game-297e8450d80411d81f0aaeee642053354125bd6d.tar.gz game-297e8450d80411d81f0aaeee642053354125bd6d.zip | |
implement TWriteScriptFile
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 // ========================================================================= |
