2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-17 02:13:02 +00:00

Dump a few iw4 assets

This commit is contained in:
Jan
2020-09-09 18:40:01 +02:00
parent 4aafbac113
commit 14666ed944
32 changed files with 734 additions and 220 deletions

View File

@@ -1,12 +1,14 @@
#include "ObjWriting.h"
#include "Dumping/IZoneDumper.h"
#include "Game/IW4/ZoneDumperIW4.h"
#include "Game/T6/ZoneDumperT6.h"
ObjWriting::Configuration_t ObjWriting::Configuration;
const IZoneDumper* const ZONE_DUMPER[]
{
new ZoneDumperT6()
new IW4::ZoneDumper(),
new T6::ZoneDumper()
};
bool ObjWriting::DumpZone(Zone* zone, const std::string& basePath)