diff --git a/port/Assimp.NET/Assimp.NET.sln b/port/Assimp.NET/Assimp.NET.sln new file mode 100644 index 000000000..cd828b237 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Assimp.NET", "Assimp.NET\Assimp.NET.vcproj", "{4922D7BD-5E7A-44DD-BC1D-7F6F0BD82894}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4922D7BD-5E7A-44DD-BC1D-7F6F0BD82894}.Debug|Win32.ActiveCfg = Debug|Win32 + {4922D7BD-5E7A-44DD-BC1D-7F6F0BD82894}.Debug|Win32.Build.0 = Debug|Win32 + {4922D7BD-5E7A-44DD-BC1D-7F6F0BD82894}.Release|Win32.ActiveCfg = Release|Win32 + {4922D7BD-5E7A-44DD-BC1D-7F6F0BD82894}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/port/Assimp.NET/Assimp.NET/Animation.cpp b/port/Assimp.NET/Assimp.NET/Animation.cpp new file mode 100644 index 000000000..d02673158 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Animation.cpp @@ -0,0 +1,11 @@ + +#include "Animation.h" + +namespace AssimpNET +{ + +Animation::Animation(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Animation.h b/port/Assimp.NET/Assimp.NET/Animation.h new file mode 100644 index 000000000..a94123214 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Animation.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Animation + { + public: + Animation(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Assimp.NET.vcproj b/port/Assimp.NET/Assimp.NET/Assimp.NET.vcproj new file mode 100644 index 000000000..1f66c1f5c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Assimp.NET.vcproj @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/port/Assimp.NET/Assimp.NET/Bone.cpp b/port/Assimp.NET/Assimp.NET/Bone.cpp new file mode 100644 index 000000000..96d24f41f --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Bone.cpp @@ -0,0 +1,12 @@ + +#include "Bone.h" + + +namespace AssimpNET +{ + +Bone::Bone(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Bone.h b/port/Assimp.NET/Assimp.NET/Bone.h new file mode 100644 index 000000000..a5b1e93a4 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Bone.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Bone + { + public: + Bone(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Camera.cpp b/port/Assimp.NET/Assimp.NET/Camera.cpp new file mode 100644 index 000000000..98a1752df --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Camera.cpp @@ -0,0 +1,11 @@ + +#include "Camera.h" + +namespace AssimpNET +{ + +Camera::Camera(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Camera.h b/port/Assimp.NET/Assimp.NET/Camera.h new file mode 100644 index 000000000..62c8a7807 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Camera.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Camera + { + public: + Camera(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/CompressedTexture.cpp b/port/Assimp.NET/Assimp.NET/CompressedTexture.cpp new file mode 100644 index 000000000..e09ca569e --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/CompressedTexture.cpp @@ -0,0 +1,11 @@ + +#include "CompressedTexture.h" + +namespace AssimpNET +{ + +CompressedTexture::CompressedTexture(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/CompressedTexture.h b/port/Assimp.NET/Assimp.NET/CompressedTexture.h new file mode 100644 index 000000000..6fb5e330c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/CompressedTexture.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class CompressedTexture + { + public: + CompressedTexture(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/ConfigProperty.cpp b/port/Assimp.NET/Assimp.NET/ConfigProperty.cpp new file mode 100644 index 000000000..d932007df --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/ConfigProperty.cpp @@ -0,0 +1,11 @@ + +#include "ConfigProperty.h" + +namespace AssimpNET +{ + +ConfigProperty::ConfigProperty(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/ConfigProperty.h b/port/Assimp.NET/Assimp.NET/ConfigProperty.h new file mode 100644 index 000000000..53da44b80 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/ConfigProperty.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class ConfigProperty + { + public: + ConfigProperty(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/DefaultLogger.cpp b/port/Assimp.NET/Assimp.NET/DefaultLogger.cpp new file mode 100644 index 000000000..a9f03c54c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/DefaultLogger.cpp @@ -0,0 +1,11 @@ + +#include "DefaultLogger.h" + +namespace AssimpNET +{ + +DefaultLogger::DefaultLogger(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/DefaultLogger.h b/port/Assimp.NET/Assimp.NET/DefaultLogger.h new file mode 100644 index 000000000..a4e20248c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/DefaultLogger.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class DefaultLogger + { + public: + DefaultLogger(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Face.cpp b/port/Assimp.NET/Assimp.NET/Face.cpp new file mode 100644 index 000000000..15d7cda6d --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Face.cpp @@ -0,0 +1,11 @@ + +#include "Face.h" + +namespace AssimpNET +{ + +Face::Face(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Face.h b/port/Assimp.NET/Assimp.NET/Face.h new file mode 100644 index 000000000..b33aac7ae --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Face.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Face + { + public: + Face(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/IOStream.cpp b/port/Assimp.NET/Assimp.NET/IOStream.cpp new file mode 100644 index 000000000..d489d5122 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/IOStream.cpp @@ -0,0 +1,11 @@ + +#include "IOStream.h" + +namespace AssimpNET +{ + +IOStream::IOStream(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/IOStream.h b/port/Assimp.NET/Assimp.NET/IOStream.h new file mode 100644 index 000000000..8d1aaa5ac --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/IOStream.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class IOStream + { + public: + IOStream(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/IOSystem.cpp b/port/Assimp.NET/Assimp.NET/IOSystem.cpp new file mode 100644 index 000000000..3acfbee2a --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/IOSystem.cpp @@ -0,0 +1,11 @@ + +#include "IOSystem.h" + +namespace AssimpNET +{ + +IOSystem::IOSystem(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/IOSystem.h b/port/Assimp.NET/Assimp.NET/IOSystem.h new file mode 100644 index 000000000..2547d82d6 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/IOSystem.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class IOSystem + { + public: + IOSystem(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Importer.cpp b/port/Assimp.NET/Assimp.NET/Importer.cpp new file mode 100644 index 000000000..f36594afc --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Importer.cpp @@ -0,0 +1,11 @@ + +#include "Importer.h" + +namespace AssimpNET +{ + +Importer::Importer(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Importer.h b/port/Assimp.NET/Assimp.NET/Importer.h new file mode 100644 index 000000000..e1d1b6532 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Importer.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Importer + { + public: + Importer(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Light.cpp b/port/Assimp.NET/Assimp.NET/Light.cpp new file mode 100644 index 000000000..a0a7fcd8b --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Light.cpp @@ -0,0 +1,11 @@ + +#include "Light.h" + +namespace AssimpNET +{ + +Light::Light(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Light.h b/port/Assimp.NET/Assimp.NET/Light.h new file mode 100644 index 000000000..0e2ae810f --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Light.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Light + { + public: + Light(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/LogStream.cpp b/port/Assimp.NET/Assimp.NET/LogStream.cpp new file mode 100644 index 000000000..c4fe24326 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/LogStream.cpp @@ -0,0 +1,11 @@ + +#include "LogStream.h" + +namespace AssimpNET +{ + +LogStream::LogStream(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/LogStream.h b/port/Assimp.NET/Assimp.NET/LogStream.h new file mode 100644 index 000000000..18d7d7207 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/LogStream.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class LogStream + { + public: + LogStream(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Logger.cpp b/port/Assimp.NET/Assimp.NET/Logger.cpp new file mode 100644 index 000000000..51e02a9f5 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Logger.cpp @@ -0,0 +1,11 @@ + +#include "Logger.h" + +namespace AssimpNET +{ + +Logger::Logger(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Logger.h b/port/Assimp.NET/Assimp.NET/Logger.h new file mode 100644 index 000000000..e319bfed1 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Logger.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Logger + { + public: + Logger(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/MatKey.cpp b/port/Assimp.NET/Assimp.NET/MatKey.cpp new file mode 100644 index 000000000..fd3458bdf --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/MatKey.cpp @@ -0,0 +1,11 @@ + +#include "MatKey.h" + +namespace AssimpNET +{ + +MatKey::MatKey(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/MatKey.h b/port/Assimp.NET/Assimp.NET/MatKey.h new file mode 100644 index 000000000..17fccc23a --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/MatKey.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class MatKey + { + public: + MatKey(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Material.cpp b/port/Assimp.NET/Assimp.NET/Material.cpp new file mode 100644 index 000000000..5bffc35f2 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Material.cpp @@ -0,0 +1,11 @@ + +#include "Material.h" + +namespace AssimpNET + +{ +Material::Material(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Material.h b/port/Assimp.NET/Assimp.NET/Material.h new file mode 100644 index 000000000..f0fbbad6a --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Material.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Material + { + public: + Material(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Matrix3x3.cpp b/port/Assimp.NET/Assimp.NET/Matrix3x3.cpp new file mode 100644 index 000000000..d6bc03f90 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Matrix3x3.cpp @@ -0,0 +1,11 @@ + +#include "Matrix3x3.h" + +namespace AssimpNET +{ + +Matrix3x3::Matrix3x3(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Matrix3x3.h b/port/Assimp.NET/Assimp.NET/Matrix3x3.h new file mode 100644 index 000000000..5e9b62599 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Matrix3x3.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Matrix3x3 + { + public: + Matrix3x3(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Matrix4x4.cpp b/port/Assimp.NET/Assimp.NET/Matrix4x4.cpp new file mode 100644 index 000000000..bcbd9354e --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Matrix4x4.cpp @@ -0,0 +1,11 @@ + +#include "Matrix4x4.h" + +namespace AssimpNET +{ + +Matrix4x4::Matrix4x4(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Matrix4x4.h b/port/Assimp.NET/Assimp.NET/Matrix4x4.h new file mode 100644 index 000000000..57086da0c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Matrix4x4.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Matrix4x4 + { + public: + Matrix4x4(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Mesh.cpp b/port/Assimp.NET/Assimp.NET/Mesh.cpp new file mode 100644 index 000000000..358edb8b7 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Mesh.cpp @@ -0,0 +1,11 @@ + +#include "Mesh.h" + +namespace AssimpNET +{ + +Mesh::Mesh(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Mesh.h b/port/Assimp.NET/Assimp.NET/Mesh.h new file mode 100644 index 000000000..44e3abad0 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Mesh.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Mesh + { + public: + Mesh(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/NativeException.cpp b/port/Assimp.NET/Assimp.NET/NativeException.cpp new file mode 100644 index 000000000..5a32d8a13 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/NativeException.cpp @@ -0,0 +1,11 @@ + +#include "NativeException.h" + +namespace AssimpNET +{ + +NativeException::NativeException(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/NativeException.h b/port/Assimp.NET/Assimp.NET/NativeException.h new file mode 100644 index 000000000..e7efc475c --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/NativeException.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class NativeException + { + public: + NativeException(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Node.cpp b/port/Assimp.NET/Assimp.NET/Node.cpp new file mode 100644 index 000000000..fa1e6782d --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Node.cpp @@ -0,0 +1,11 @@ + +#include "Node.h" + +namespace AssimpNET +{ + +Node::Node(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Node.h b/port/Assimp.NET/Assimp.NET/Node.h new file mode 100644 index 000000000..9eee50531 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Node.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Node + { + public: + Node(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/NodeAnim.cpp b/port/Assimp.NET/Assimp.NET/NodeAnim.cpp new file mode 100644 index 000000000..11c54fecd --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/NodeAnim.cpp @@ -0,0 +1,11 @@ + +#include "NodeAnim.h" + +namespace AssimpNET +{ + +NodeAnim::NodeAnim(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/NodeAnim.h b/port/Assimp.NET/Assimp.NET/NodeAnim.h new file mode 100644 index 000000000..63cc25efc --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/NodeAnim.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class NodeAnim + { + public: + NodeAnim(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/PostProcessing.cpp b/port/Assimp.NET/Assimp.NET/PostProcessing.cpp new file mode 100644 index 000000000..f0fb694a3 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/PostProcessing.cpp @@ -0,0 +1,11 @@ + +#include "PostProcessing.h" + +namespace AssimpNET +{ + +PostProcessing::PostProcessing(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/PostProcessing.h b/port/Assimp.NET/Assimp.NET/PostProcessing.h new file mode 100644 index 000000000..6ae700cda --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/PostProcessing.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class PostProcessing + { + public: + PostProcessing(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Quaternion.cpp b/port/Assimp.NET/Assimp.NET/Quaternion.cpp new file mode 100644 index 000000000..68e3ee416 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Quaternion.cpp @@ -0,0 +1,11 @@ + +#include "Quaternion.h" + +namespace AssimpNET + +{ +Quaternion::Quaternion(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Quaternion.h b/port/Assimp.NET/Assimp.NET/Quaternion.h new file mode 100644 index 000000000..f72196a26 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Quaternion.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Quaternion + { + public: + Quaternion(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Scene.cpp b/port/Assimp.NET/Assimp.NET/Scene.cpp new file mode 100644 index 000000000..d1b508542 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Scene.cpp @@ -0,0 +1,11 @@ + +#include "Scene.h" + +namespace AssimpNET +{ + +Scene::Scene(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Scene.h b/port/Assimp.NET/Assimp.NET/Scene.h new file mode 100644 index 000000000..a9647cbe2 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Scene.h @@ -0,0 +1,10 @@ +#pragma once + +namespace AssimpNET +{ + ref class Scene + { + public: + Scene(void); + }; +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Texture.cpp b/port/Assimp.NET/Assimp.NET/Texture.cpp new file mode 100644 index 000000000..d690a7146 --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Texture.cpp @@ -0,0 +1,11 @@ + +#include "Texture.h" + +namespace AssimpNET +{ + +Texture::Texture(void) +{ +} + +}//namespace \ No newline at end of file diff --git a/port/Assimp.NET/Assimp.NET/Texture.h b/port/Assimp.NET/Assimp.NET/Texture.h new file mode 100644 index 000000000..75e26718b --- /dev/null +++ b/port/Assimp.NET/Assimp.NET/Texture.h @@ -0,0 +1,11 @@ +#pragma once + +namespace AssimpNET +{ + + ref class Texture + { + public: + Texture(void); + }; +}//namespace \ No newline at end of file