mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
e40a597f18
* Implement basic functionality Implements the basic functionality and parsing of property behaviors. Unhandled messages and logged and discarded for the time being. The only implemented message is a basic one that sends the needed info the the client side User Interface to pop up.
21 lines
655 B
C++
21 lines
655 B
C++
#pragma once
|
|
|
|
#ifndef __BEHAVIORSTATES__H__
|
|
#define __BEHAVIORSTATES__H__
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
enum States : BEHAVIORSTATE {
|
|
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__
|