little actor.h refactor

This commit is contained in:
2024-11-26 13:15:31 +01:00
parent 1e76a7ca95
commit 6996490f3c

View File

@@ -5,12 +5,11 @@
#include "SFML/Graphics/Texture.hpp"
#include "Bullet.h"
struct Position {
int x;
int y;
};
class Actor {
struct Position {
int x;
int y;
};
public:
Actor(int x, int y, std::string path);