🚀
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user