R-Type
Distributed multiplayer game engine in C++
Loading...
Searching...
No Matches
GameEvent.cpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2025
3** Created by hugo on 06/12/2025
4** File description:
5** GameEvent.cpp
6*/
7
9
10namespace server {
11
12 GameEvent::GameEvent(Type type) : _type(type) {}
13
15 return _type;
16 }
17
18} // namespace server
GameEvent(Type type)
Definition GameEvent.cpp:12
Type getType() const
Get the type of the event.
Definition GameEvent.cpp:14