mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
e2616c5f11
A technical change to move all emum files to a single directory
14 lines
181 B
C
14 lines
181 B
C
#pragma once
|
|
|
|
#ifndef MISSIONLOCKSTATE_H
|
|
#define MISSIONLOCKSTATE_H
|
|
|
|
enum class MissionLockState : int
|
|
{
|
|
MISSION_LOCK_LOCKED,
|
|
MISSION_LOCK_NEW,
|
|
MISSION_LOCK_UNLOCKED,
|
|
};
|
|
|
|
#endif
|