2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-10-04 21:59:37 +00:00
2015-06-10 18:55:06 -10:00

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();
}
}
}