mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-15 19:11:20 +00:00
13 lines
175 B
C++
13 lines
175 B
C++
#ifndef ECINEMATICEVENT_H
|
|
#define ECINEMATICEVENT_H
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eCinematicEvent : uint32_t {
|
|
STARTED,
|
|
WAYPOINT,
|
|
ENDED,
|
|
};
|
|
|
|
#endif //!ECINEMATICEVENT_H
|