L2Bot2.0/L2BotCore/Domain/Repositories/EntityRepositoryInterface.h
2023-01-21 13:15:11 +04:00

15 lines
286 B
C++

#pragma once
#include <vector>
#include "../Entities/WorldObject.h"
#include "../DTO/EntityState.h"
namespace L2Bot::Domain::Repositories
{
class EntityRepositoryInterface
{
public:
virtual const std::vector<DTO::EntityState*> GetEntities() = 0;
virtual void Reset() = 0;
};
}