mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-15 19:11:20 +00:00
13 lines
169 B
C
13 lines
169 B
C
#pragma once
|
|
|
|
#ifndef EMISSIONLOCKSTATE_H
|
|
#define EMISSIONLOCKSTATE_H
|
|
|
|
enum class eMissionLockState : int {
|
|
LOCKED,
|
|
NEW,
|
|
UNLOCKED,
|
|
};
|
|
|
|
#endif //!EMISSIONLOCKSTATE_H
|