mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-10-04 21:59:37 +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 MP1DataSpec : public IDataSpec
|
|
{
|
|
|
|
};
|
|
|
|
IDataSpec* NewDataSpec_mp1()
|
|
{
|
|
return new MP1DataSpec();
|
|
}
|
|
|
|
}
|
|
}
|