mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 00:31:20 +00:00
20 lines
198 B
C++
20 lines
198 B
C++
#include "Graphics/CModel.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
void CModel::Draw(const CModelFlags& flags) const
|
|
{
|
|
}
|
|
|
|
void CModel::Touch(int) const
|
|
{
|
|
}
|
|
|
|
bool CModel::IsLoaded(int) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|