mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
18 lines
604 B
C++
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
|