mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
22 lines
618 B
C++
22 lines
618 B
C++
#ifndef MOVETOINVENTORYMESSAGE_H
|
|
#define MOVETOINVENTORYMESSAGE_H
|
|
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @brief Sent when a player moves a Behavior A at position B to their inventory.
|
|
*/
|
|
#pragma warning("This Control Behavior Message does not have a test yet. Non-developers can ignore this warning.")
|
|
class MoveToInventoryMessage : public BehaviorMessageBase {
|
|
public:
|
|
MoveToInventoryMessage(const AMFArrayValue& arguments);
|
|
[[nodiscard]] uint32_t GetBehaviorIndex() const noexcept { return m_BehaviorIndex; };
|
|
|
|
private:
|
|
uint32_t m_BehaviorIndex;
|
|
};
|
|
|
|
#endif //!MOVETOINVENTORYMESSAGE_H
|