AlpacaLibrary/Include/Core/Classes/MessageNode.hpp

30 lines
705 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MESSAGENODE_HPP_INCLUDED
#define MESSAGENODE_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include <string>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class MessageNode : public CacheableNode
{
public:
MessageNode();
MessageNode(const void* Obj);
MessageNode(const MessageNode& M);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetID() const;
std::string GetName() const;
std::string GetSender() const;
std::string GetText() const;
std::int32_t GetTick() const;
std::int32_t GetType() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // MESSAGENODE_HPP_INCLUDED