mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-05 16:32:26 -06:00
17 lines
162 B
C
17 lines
162 B
C
#pragma once
|
|
|
|
#ifndef BEHAVIORSLOT_H
|
|
#define BEHAVIORSLOT_H
|
|
|
|
enum class BehaviorSlot
|
|
{
|
|
Invalid = -1,
|
|
Primary,
|
|
Offhand,
|
|
Neck,
|
|
Head,
|
|
Consumable
|
|
};
|
|
|
|
#endif
|