DarkflameServer/dGame/dBehaviors/BehaviorSlot.h

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

17 lines
159 B
C
Raw Normal View History

#pragma once
#ifndef BEHAVIORSLOT_H
#define BEHAVIORSLOT_H
enum class BehaviorSlot
{
Invalid = -1,
Primary,
Offhand,
Neck,
Head,
Consumable
};
#endif