summaryrefslogtreecommitdiffstats
path: root/src/core/Zones.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-10-12 03:16:30 +0200
committerGitHub <noreply@github.com>2020-10-12 03:16:30 +0200
commit239e09ad07a9201eaba64ec32ce0aaf09cdfb859 (patch)
tree8d4f53165373f1c15215a46b63a2c7791649873b /src/core/Zones.h
parentMerge pull request #760 from Sergeanur/VC/TextFinish (diff)
parentZones saving and loading (diff)
downloadre3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar.gz
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar.bz2
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar.lz
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar.xz
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.tar.zst
re3-239e09ad07a9201eaba64ec32ce0aaf09cdfb859.zip
Diffstat (limited to 'src/core/Zones.h')
-rw-r--r--src/core/Zones.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/Zones.h b/src/core/Zones.h
index 92e292b8..3a74427d 100644
--- a/src/core/Zones.h
+++ b/src/core/Zones.h
@@ -108,5 +108,7 @@ public:
static void AddZoneToAudioZoneArray(CZone *zone);
static void InitialiseAudioZoneArray(void);
static void SaveAllZones(uint8 *buffer, uint32 *length);
+ static void SaveOneZone(CZone *zone, uint8 **buffer, uint32 *length, eZoneType zoneType);
static void LoadAllZones(uint8 *buffer, uint32 length);
+ static void LoadOneZone(CZone *zone, uint8 **buffer, uint32 *length, eZoneType zoneType);
};