DarkflameServer/dGame/dBehaviors/BehaviorSlot.h
David Markowitz 8a54e7ccd2
Implement Precompiled Headers (#591)
When applied, this will speed up compile times dramatically.
2022-07-04 15:24:45 -07:00

17 lines
162 B
C

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