NasNas
An intuitive and beginner friendly 2D game framework for C++
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 {
11  virtual ~ColliderComponentInterface() = default;
12  bool dynamic = false;
13  virtual auto getBounds() const -> ns::FloatRect = 0;
14  };
15 
17  sf::Vector2f position;
18  sf::Vector2f size;
19 
20  auto getBounds() const -> ns::FloatRect override;
21  };
22 
24  sf::Vector2f position;
25  float radius;
26 
27  auto getBounds() const -> ns::FloatRect override;
28  };
29 
32 }