R-Type  2
Doom but in better
Loading...
Searching...
No Matches
Entity.cpp
Go to the documentation of this file.
1#include "Entity.hpp"
2
3Entity::Entity(std::size_t id) : _id(id) {}
4
5Entity::operator std::size_t() const {
6 return _id;
7}
8
9std::size_t Entity::getID() const {
10 return _id;
11}
Entity(std::size_t id)
Constructs an Entity with a given ID.
Definition Entity.cpp:3
std::size_t getID() const
Retrieves the ID of the entity.
Definition Entity.cpp:9