feat: add incoming messages to bot

This commit is contained in:
k0t9i
2023-02-09 18:30:07 +04:00
parent 130cdc6bca
commit eefb5d40ae
27 changed files with 25280 additions and 111 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <string>
#include <vector>
#include "IncomingMessage.h"
namespace L2Bot::Domain::Serializers
{
class IncomingMessageFactoryInterface
{
public:
virtual const IncomingMessage CreateMessage(std::wstring data) const = 0;
};
}