mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-26 07:27:18 +00:00
17 lines
142 B
C++
17 lines
142 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace nejlika
|
|
{
|
|
|
|
enum class UpgradeTriggerCondition
|
|
{
|
|
None,
|
|
Unarmed,
|
|
Melee,
|
|
TwoHanded,
|
|
Shield
|
|
};
|
|
|
|
} |