summaryrefslogtreecommitdiff
path: root/Runtime/Rendering/DynamicMesh.h
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Rendering/DynamicMesh.h')
-rw-r--r--Runtime/Rendering/DynamicMesh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Runtime/Rendering/DynamicMesh.h b/Runtime/Rendering/DynamicMesh.h
index 3cbb6f6..01babfc 100644
--- a/Runtime/Rendering/DynamicMesh.h
+++ b/Runtime/Rendering/DynamicMesh.h
@@ -5,6 +5,9 @@
class DynamicMesh
{
public:
+ DynamicMesh() {};
+ virtual ~DynamicMesh() {};
+
virtual void Draw() = 0;
};