Added physics components. 2014:04:05 02:57.

This commit is contained in:
Stiffly
2014-04-05 02:57:29 +02:00
committed by sippeangelo
parent e2d8235169
commit b4c8d8ca19
6 changed files with 84 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef Components_BoxShape_h__
#define Components_BoxShape_h__
#include "Component.h"
namespace Components
{
struct BoxShape : Component
{
float height, width;
};
}
#endif // !Components_BoxShape_h__