22 lines
327 B
C++
22 lines
327 B
C++
|
|
#include "Texture.h"
|
|
|
|
namespace AssimpNET
|
|
{
|
|
|
|
Texture::Texture(void)
|
|
{
|
|
throw gcnew System::NotImplementedException();
|
|
}
|
|
|
|
Texture::~Texture(void)
|
|
{
|
|
throw gcnew System::NotImplementedException();
|
|
}
|
|
|
|
bool Texture::CheckFormat(array<char>^ s)
|
|
{
|
|
throw gcnew System::NotImplementedException();
|
|
}
|
|
|
|
}//namespace
|