Load T5 fastfiles

This commit is contained in:
Jan
2021-05-12 21:47:34 +02:00
parent e3a3d012e6
commit bb3e7d9e88
18 changed files with 711 additions and 6 deletions

View File

@ -2,6 +2,7 @@
#include "Dumping/IZoneDumper.h"
#include "Game/IW3/ZoneDumperIW3.h"
#include "Game/IW4/ZoneDumperIW4.h"
#include "Game/T5/ZoneDumperT5.h"
#include "Game/T6/ZoneDumperT6.h"
ObjWriting::Configuration_t ObjWriting::Configuration;
@ -10,6 +11,7 @@ const IZoneDumper* const ZONE_DUMPER[]
{
new IW3::ZoneDumper(),
new IW4::ZoneDumper(),
new T5::ZoneDumper(),
new T6::ZoneDumper()
};