L2Bot2.0/L2BotDll/DTO/ChatMessage.h
2023-01-25 19:53:02 +04:00

12 lines
197 B
C++

#pragma once
#include <cstdint>
#include <string>
struct ChatMessage
{
const uint32_t objectId = 0;
const uint8_t channel = 0;
const std::wstring name = L"";
const std::wstring text = L"";
};