mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
21 lines
416 B
C++
21 lines
416 B
C++
#pragma once
|
|
#include "dpCommon.h"
|
|
|
|
class dpEntity;
|
|
|
|
class dpShapeBase {
|
|
public:
|
|
dpShapeBase(dpEntity* parentEntity);
|
|
virtual ~dpShapeBase();
|
|
|
|
virtual bool IsColliding(dpShapeBase* other) = 0;
|
|
|
|
const dpShapeType& GetShapeType() const { return m_ShapeType; }
|
|
|
|
dpEntity* GetParentEntity() const { return m_ParentEntity; }
|
|
|
|
protected:
|
|
dpEntity* m_ParentEntity;
|
|
dpShapeType m_ShapeType = dpShapeType::Invalid;
|
|
};
|