DarkflameServer/dGame/ModifierNameType.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
135 B
C
Raw Normal View History

2024-06-02 07:53:56 +00:00
#pragma once
#include <cstdint>
namespace nejlika
{
enum class ModifierNameType : uint8_t
{
Prefix,
Suffix,
Object,
Skill
};
}