15 lines
286 B
C++
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;
|
|
};
|
|
}
|