diff options
Diffstat (limited to 'source/modules/asura-box2d/physics/chain_shape.h')
-rw-r--r-- | source/modules/asura-box2d/physics/chain_shape.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/source/modules/asura-box2d/physics/chain_shape.h b/source/modules/asura-box2d/physics/chain_shape.h index e69de29..dd03ddf 100644 --- a/source/modules/asura-box2d/physics/chain_shape.h +++ b/source/modules/asura-box2d/physics/chain_shape.h @@ -0,0 +1,32 @@ +#ifndef __ASURA_CHAIN_SHAPE_H__ +#define __ASURA_CHAIN_SHAPE_H__ + +// 3rd-party +#include <Box2D/Collision/Shapes/b2ChainShape.h> + +// asura modules +#include <asura-utils/scripting/portable.hpp> + +namespace AsuraEngine +{ + namespace Physics + { + + class ChainShape + : AEScripting::Portable<ChainShape> + { + public: + + ChainShape(); + ~ChainShape(); + + private: + + b2ChainShape* mShape; + + }; + + } +} + +#endif
\ No newline at end of file |