mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
8a54e7ccd2
When applied, this will speed up compile times dramatically.
14 lines
184 B
C
14 lines
184 B
C
#pragma once
|
|
|
|
#ifndef MISSIONLOCKSTATE_H
|
|
#define MISSIONLOCKSTATE_H
|
|
|
|
enum class MissionLockState : int
|
|
{
|
|
MISSION_LOCK_LOCKED,
|
|
MISSION_LOCK_NEW,
|
|
MISSION_LOCK_UNLOCKED,
|
|
};
|
|
|
|
#endif
|