From 297e8450d80411d81f0aaeee642053354125bd6d Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 22 May 2025 11:40:04 -0300 Subject: implement TWriteScriptFile --- src/script.hh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/script.hh') 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 // ========================================================================= -- cgit v1.2.3