2021-12-05 17:54:36 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-07-04 22:24:45 +00:00
|
|
|
|
#ifndef BEHAVIORSLOT_H
|
|
|
|
|
#define BEHAVIORSLOT_H
|
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
|
enum class BehaviorSlot
|
|
|
|
|
{
|
|
|
|
|
Invalid = -1,
|
|
|
|
|
Primary,
|
|
|
|
|
Offhand,
|
|
|
|
|
Neck,
|
|
|
|
|
Head,
|
|
|
|
|
Consumable
|
|
|
|
|
};
|
2022-07-04 22:24:45 +00:00
|
|
|
|
|
|
|
|
|
#endif
|