22 lines
270 B
C++
22 lines
270 B
C++
#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
|