Uranus  1.0.1.0
Uranus is a GameEngine written in C++
Loading...
Searching...
No Matches
Rect.hpp
1/*
2** EPITECH PROJECT, 2023
3** Rect.hpp
4** File description:
5** Rect.hpp
6*/
7
8#ifndef URANUS_RECT_HPP
9#define URANUS_RECT_HPP
10
11#include "Dependencies.hpp"
12
13namespace engine {
14
15 template<typename T>
16 class Rect : public sf::Rect<T> {};
17
18 typedef Rect<int> IntRect;
19 typedef Rect<float> FloatRect;
20
21} // namespace engine
22
23#endif // URANUS_RECT_HPP
Definition: Rect.hpp:16