mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-05-03 19:30:04 -05: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__
|