feat: add chat messages
This commit is contained in:
12
L2BotDll/DTO/ChatMessage.h
Normal file
12
L2BotDll/DTO/ChatMessage.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
struct ChatMessage
|
||||
{
|
||||
const uint32_t objectId = 0;
|
||||
const uint8_t channel = 0;
|
||||
const std::string name = "";
|
||||
const std::string text = "";
|
||||
};
|
Reference in New Issue
Block a user