mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
17 lines
348 B
C++
17 lines
348 B
C++
#include "ZoneWriting.h"
|
|
|
|
#include "Game/IW4/ZoneWriterFactoryIW4.h"
|
|
#include "Game/T6/ZoneWriterFactoryT6.h"
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
IZoneWriterFactory* ZoneWriterFactories[]
|
|
{
|
|
new IW4::ZoneWriterFactory(),
|
|
new T6::ZoneWriterFactory()
|
|
};
|
|
|
|
bool ZoneWriting::WriteZone(std::ostream& stream, Zone* zone)
|
|
{
|
|
return true;
|
|
}
|