mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
18 lines
337 B
C++
18 lines
337 B
C++
#pragma once
|
|
#include "dpShapeBase.h"
|
|
|
|
class dpShapeSphere : public dpShapeBase {
|
|
public:
|
|
dpShapeSphere(dpEntity* parentEntity, float radius);
|
|
~dpShapeSphere();
|
|
|
|
bool IsColliding(dpShapeBase* other);
|
|
|
|
const float GetRadius() const { return m_Radius; }
|
|
|
|
void SetScale(float scale) { m_Radius = scale; }
|
|
|
|
private:
|
|
float m_Radius;
|
|
};
|