feat: change dtos to entities
This commit is contained in:
14
L2BotCore/Domain/Repositories/EntityRepositoryInterface.h
Normal file
14
L2BotCore/Domain/Repositories/EntityRepositoryInterface.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user