L2Bot2.0/L2BotCore/Domain/Repositories/ObjectRepositoryInterface.h
2023-01-16 15:33:32 +04:00

14 lines
218 B
C++

#pragma once
#include <cstdint>
#include <map>
namespace L2Bot::Domain::Repositories
{
template <typename T>
class ObjectRepositoryInterface
{
public:
virtual const std::map<uint32_t, T> GetObjects() = 0;
};
}