mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
17 lines
159 B
C
17 lines
159 B
C
#pragma once
|
|
|
|
#ifndef BEHAVIORSLOT_H
|
|
#define BEHAVIORSLOT_H
|
|
|
|
enum class BehaviorSlot
|
|
{
|
|
Invalid = -1,
|
|
Primary,
|
|
Offhand,
|
|
Neck,
|
|
Head,
|
|
Consumable
|
|
};
|
|
|
|
#endif
|