Uranus  1.0.1.0
Uranus is a GameEngine written in C++
Loading...
Searching...
No Matches
Base.hpp
1/*
2** EPITECH PROJECT, 2023
3** Base.hpp
4** File description:
5** Base.hpp
6*/
7
8#ifndef URANUS_BASE_HPP
9#define URANUS_BASE_HPP
10
11#include "Dependencies.hpp"
12#include "uranus/ecs/Entity.hpp"
13
14namespace engine {
15 class Base {
16 public:
17 virtual ~Base() = default;
18
19 explicit Base(const std::string &uniqueName);
20
21 const std::string &getUniqueName();
22
23 protected:
24 std::string _uniqueName;
25 size_t _entityId;
26 };
27} // namespace engine
28
29#endif // URANUS_BASE_HPP
Definition: Base.hpp:15