mirror of https://github.com/AxioDL/metaforce.git
18 lines
498 B
C++
18 lines
498 B
C++
#include "HECLDatabase.hpp"
|
|
|
|
#include "DUMB.hpp"
|
|
#include "HMDL.hpp"
|
|
#include "MATR.hpp"
|
|
#include "STRG.hpp"
|
|
#include "TXTR.hpp"
|
|
|
|
const HECLDatabase::RegistryEntry DATASPEC_TYPE_REGISTRY[]
|
|
{
|
|
REGISTRY_ENTRY("DUMB", CDUMBProject, CDUMBRuntime),
|
|
REGISTRY_ENTRY("HMDL", CHMDLProject, CHMDLRuntime),
|
|
REGISTRY_ENTRY("MATR", CMATRProject, CMATRRuntime),
|
|
REGISTRY_ENTRY("STRG", CSTRGProject, CSTRGRuntime),
|
|
REGISTRY_ENTRY("TXTR", CTXTRProject, CTXTRRuntime),
|
|
REGISTRY_SENTINEL()
|
|
};
|