summaryrefslogtreecommitdiff
path: root/Source/modules/asura-box2d/Physics2D/ChainShape.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/modules/asura-box2d/Physics2D/ChainShape.h')
-rw-r--r--Source/modules/asura-box2d/Physics2D/ChainShape.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/modules/asura-box2d/Physics2D/ChainShape.h b/Source/modules/asura-box2d/Physics2D/ChainShape.h
new file mode 100644
index 0000000..2403587
--- /dev/null
+++ b/Source/modules/asura-box2d/Physics2D/ChainShape.h
@@ -0,0 +1,29 @@
+#ifndef __ASURA_CHAIN_SHAPE_H__
+#define __ASURA_CHAIN_SHAPE_H__
+
+#include <Box2D/Collision/Shapes/b2ChainShape.h>
+
+#include <asura-base/Scripting/Scripting.h>
+#include <asura-base/Classes.h>
+
+namespace_begin(AsuraEngine)
+namespace_begin(Physics)
+
+class ChainShape
+ : AEScripting::Portable<ChainShape>
+{
+public:
+
+ ChainShape();
+ ~ChainShape();
+
+private:
+
+ b2ChainShape* m_Shape;
+
+};
+
+namespace_end
+namespace_end
+
+#endif \ No newline at end of file