Make box on entity commit

This commit is contained in:
viktorljung
2015-09-10 16:27:14 +01:00
parent ce342f695f
commit a98806d551
6 changed files with 186 additions and 46 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef DAYDREAM_CBOXSHAPE_H
#define DAYDREAM_CBOXSHAPE_H
#include "Core/Component.h"
namespace dd
{
namespace Components
{
struct BoxShape: public Component
{
float x;
float y;
};
}
}
#endif //DAYDREAM_CBOXSHAPE_H