fixed windows build

This commit is contained in:
Sarah Faey 2025-05-07 17:59:50 +02:00
parent 794fa5bba0
commit 5aff6f6326
13 changed files with 33 additions and 27 deletions

View file

@ -9,8 +9,8 @@
class ActorFactory
{
public:
static std::shared_ptr<Actor> CreateActor(SDL_FRect hitbox);
static std::shared_ptr<MovingActor> CreateMovingActor(SDL_FRect hitbox);
static std::shared_ptr<Actor> CreateActor(Vector2D position, Hitbox moveHitbox, Hitbox combatHitbox);
static std::shared_ptr<MovingActor> CreateMovingActor(Vector2D position, Hitbox moveHitbox, Hitbox combatHitbox);
};