DarkflameServer/dGame/dPropertyBehaviors/BehaviorStates.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

18 lines
604 B
C++

#pragma once
#ifndef BEHAVIORSTATES_H
#define BEHAVIORSTATES_H
#include <cstdint>
enum class BehaviorState : uint32_t {
HOME_STATE = 0, //!< The HOME behavior state
CIRCLE_STATE, //!< The CIRCLE behavior state
SQUARE_STATE, //!< The SQUARE behavior state
DIAMOND_STATE, //!< The DIAMOND behavior state
TRIANGLE_STATE, //!< The TRIANGLE behavior state
STAR_STATE //!< The STAR behavior state
};
#endif //!BEHAVIORSTATES_H