mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
13 lines
184 B
C
13 lines
184 B
C
#pragma once
|
|
|
|
#ifndef __EMISSIONLOCKSTATE__H__
|
|
#define __EMISSIONLOCKSTATE__H__
|
|
|
|
enum class eMissionLockState : int {
|
|
LOCKED,
|
|
NEW,
|
|
UNLOCKED,
|
|
};
|
|
|
|
#endif //!__EMISSIONLOCKSTATE__H__
|