Files
L2Bot2.0/L2BotCore/Domain/Repositories/EntityRepositoryInterface.h
2023-10-16 00:03:43 +04:00

14 lines
312 B
C++

#pragma once
#include <unordered_map>
#include "../Entities/EntityInterface.h"
namespace L2Bot::Domain::Repositories
{
class EntityRepositoryInterface
{
public:
virtual const std::unordered_map<std::uint32_t, std::shared_ptr<Entities::EntityInterface>> GetEntities() = 0;
virtual void Reset() = 0;
};
}