Uranus  1.0.1.0
Uranus is a GameEngine written in C++
Loading...
Searching...
No Matches
Shape.hpp
1/*
2** EPITECH PROJECT, 2023
3** Shape.hpp
4** File description:
5** Shape.hpp
6*/
7
8#ifndef URANUS_SHAPE_HPP
9#define URANUS_SHAPE_HPP
10
11#include "Dependencies.hpp"
12
13namespace engine {
14
15 class Shape : public sf::Shape {};
16
17} // namespace engine
18
19#endif // URANUS_SHAPE_HPP
Definition: Shape.hpp:15