2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +00:00

integrated dataspec into RetroCommon

This commit is contained in:
Jack Andersen
2015-07-01 13:50:39 -10:00
parent af64e55395
commit 1e7f39e4c5
17 changed files with 214 additions and 18 deletions

39
DataSpec/SpecBase.cpp Normal file
View File

@@ -0,0 +1,39 @@
#include "SpecBase.hpp"
namespace Retro
{
bool SpecBase::canExtract(const HECL::Database::Project& project, const ExtractPassInfo& info,
HECL::SystemString& reasonNo)
{
}
void SpecBase::doExtract(const HECL::Database::Project& project, const ExtractPassInfo& info)
{
}
bool SpecBase::canCook(const HECL::Database::Project& project, const CookTaskInfo& info,
HECL::SystemString& reasonNo)
{
}
void SpecBase::doCook(const HECL::Database::Project& project, const CookTaskInfo& info)
{
}
bool SpecBase::canPackage(const HECL::Database::Project& project, const PackagePassInfo& info,
HECL::SystemString& reasonNo)
{
}
void SpecBase::gatherDependencies(const HECL::Database::Project& project, const PackagePassInfo& info,
std::unordered_set<HECL::ProjectPath>& implicitsOut)
{
}
void SpecBase::doPackage(const HECL::Database::Project& project, const PackagePassInfo& info)
{
}
}