refactor: move events and service locator into core project
This commit is contained in:
15
L2BotCore/Domain/DTO/ChatMessageData.h
Normal file
15
L2BotCore/Domain/DTO/ChatMessageData.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
namespace L2Bot::Domain::DTO
|
||||
{
|
||||
struct ChatMessageData
|
||||
{
|
||||
const uint32_t objectId = 0;
|
||||
const uint8_t channel = 0;
|
||||
const std::wstring name = L"";
|
||||
const std::wstring text = L"";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user