NasNas
An intuitive and beginner friendly 2D game framework for C++
include
NasNas
ecs
components
ColliderComponent.hpp
1
// Created by Modar Nasser on 26/07/2020.
2
3
#pragma once
4
5
#include <SFML/System/Vector2.hpp>
6
7
#include <NasNas/core/data/Rect.hpp>
8
9
namespace
ns::ecs
{
10
struct
ColliderComponentInterface
{
11
virtual
~
ColliderComponentInterface
() =
default
;
12
bool
dynamic =
false
;
13
virtual
auto
getBounds()
const
->
ns::FloatRect
= 0;
14
};
15
16
struct
AABBColliderComponent
:
ColliderComponentInterface
{
17
sf::Vector2f position;
18
sf::Vector2f size;
19
20
auto
getBounds()
const
->
ns::FloatRect
override
;
21
};
22
23
struct
CircleColliderComponent
:
ColliderComponentInterface
{
24
sf::Vector2f position;
25
float
radius;
26
27
auto
getBounds()
const
->
ns::FloatRect
override
;
28
};
29
30
using
AABBCollider
=
AABBColliderComponent
;
31
using
CircleCollider
=
CircleColliderComponent
;
32
}
ns::ecs
Definition:
ColliderComponent.hpp:9
ns::ecs::CircleColliderComponent
Definition:
ColliderComponent.hpp:23
ns::Rect< float >
ns::ecs::AABBColliderComponent
Definition:
ColliderComponent.hpp:16
ns::ecs::ColliderComponentInterface
Definition:
ColliderComponent.hpp:10
Generated by
1.8.13