Files
Space-Invader/include/Alien.h
T
2024-01-30 15:45:14 +01:00

18 lines
258 B
C++

#pragma once
#include <iostream>
#include <SFML/Graphics.hpp>
using namespace std;
using namespace sf;
class Alien
{
public:
Alien(Vector2f& position);
RectangleShape& getShape() { return _shape; };
private:
RectangleShape _shape;
};