21 lines
223 B
C++
21 lines
223 B
C++
#ifndef CCIRCLESHAPE_H__
|
|
#define CCIRCLESHAPE_H__
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
namespace Components
|
|
{
|
|
|
|
struct CircleShape : public Component
|
|
{
|
|
// Circles are circles
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|