Files
squidout/include/Physics/CCircleShape.h
T
viktorljung 963e492f9c CircleShape
2015-09-10 22:24:19 +01:00

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