22 lines
469 B
C++
22 lines
469 B
C++
// ======================= ZoneTool =======================
|
|
// zonetool, a fastfile linker for various
|
|
// Call of Duty titles.
|
|
//
|
|
// Project: https://github.com/ZoneTool/zonetool
|
|
// Author: RektInator (https://github.com/RektInator)
|
|
// License: GNU GPL v3.0
|
|
// ========================================================
|
|
#pragma once
|
|
|
|
namespace ZoneTool
|
|
{
|
|
namespace IW3
|
|
{
|
|
class IGfxWorld
|
|
{
|
|
public:
|
|
static void dump(GfxWorld* asset, ZoneMemory* mem);
|
|
};
|
|
}
|
|
}
|