DarkflameServer/dGame/dBehaviors/BehaviorSlot.h

17 lines
159 B
C
Raw Normal View History

2022-08-06 03:01:59 +00:00
#pragma once
#ifndef BEHAVIORSLOT_H
#define BEHAVIORSLOT_H
enum class BehaviorSlot
{
Invalid = -1,
Primary,
Offhand,
Neck,
Head,
Consumable
};
#endif