mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-10-04 18:39:35 +00:00
23 lines
221 B
C++
23 lines
221 B
C++
#include "HECLDatabase.hpp"
|
|
|
|
#include "CMDL.hpp"
|
|
#include "MREA.hpp"
|
|
|
|
namespace HECL
|
|
{
|
|
namespace Database
|
|
{
|
|
|
|
class MP2DataSpec : public IDataSpec
|
|
{
|
|
|
|
};
|
|
|
|
IDataSpec* NewDataSpec_mp2()
|
|
{
|
|
return new MP2DataSpec();
|
|
}
|
|
|
|
}
|
|
}
|