metaforce/Runtime/Graphics/CModelBoo.cpp

20 lines
198 B
C++
Raw Normal View History

2016-03-04 23:04:53 +00:00
#include "Graphics/CModel.hpp"
2016-02-13 00:57:09 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
2016-02-13 00:57:09 +00:00
{
void CModel::Draw(const CModelFlags& flags) const
{
}
2016-03-17 02:18:01 +00:00
void CModel::Touch(int) const
{
}
bool CModel::IsLoaded(int) const
{
2016-03-22 18:35:52 +00:00
return false;
2016-03-17 02:18:01 +00:00
}
2016-02-13 00:57:09 +00:00
}