mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
21 lines
368 B
C
21 lines
368 B
C
|
#ifndef __IBEHAVIORS__H__
|
||
|
#define __IBEHAVIORS__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
#include "dCommonVars.h"
|
||
|
|
||
|
class IBehaviors {
|
||
|
public:
|
||
|
struct Info {
|
||
|
LWOOBJID behaviorId{};
|
||
|
uint32_t characterId{};
|
||
|
std::string behaviorInfo;
|
||
|
};
|
||
|
|
||
|
virtual void AddBehavior(const Info& info) = 0;
|
||
|
virtual void RemoveBehavior(const uint32_t behaviorId) = 0;
|
||
|
};
|
||
|
|
||
|
#endif //!__IBEHAVIORS__H__
|