diff options
author | aap <aap@papnet.eu> | 2019-06-18 09:50:26 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-18 09:50:26 +0200 |
commit | 3b64bd1b4a5008b14b54edb257d4e8a5a8277c26 (patch) | |
tree | ca1ba1aef3b1c654f586d43b12dc27ea41c513b8 /src/FileLoader.h | |
parent | fixed anim bug (diff) | |
download | re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.gz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.bz2 re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.lz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.xz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.zst re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.zip |
Diffstat (limited to 'src/FileLoader.h')
-rw-r--r-- | src/FileLoader.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FileLoader.h b/src/FileLoader.h index 0aad884d..f9121ace 100644 --- a/src/FileLoader.h +++ b/src/FileLoader.h @@ -31,4 +31,12 @@ public: static void LoadPedPathNode(const char *line, int id, int node); static void LoadCarPathNode(const char *line, int id, int node); static void Load2dEffect(const char *line); + + static void LoadScene(const char *filename); + static void LoadObjectInstance(const char *line); + static void LoadZone(const char *line); + static void LoadCullZone(const char *line); + static void LoadPickup(const char *line); + + static void LoadMapZones(const char *filename); }; |