diff --git a/enemy.cpp b/enemy.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..0f576ea85d48803d37a4d3a8ac5d29499d043bc7
--- /dev/null
+++ b/enemy.cpp
@@ -0,0 +1,18 @@
+#ifndef ENEMY_H
+#define ENEMY_H
+
+#include <SFML/Graphics.hpp>
+
+class Enemy : public sf::Drawable {
+public:
+    Enemy();
+    void setPosition(float x, float y);
+    void update();
+
+private:
+    virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const;
+
+    sf::CircleShape m_shape;
+};
+
+#endif // ENEMY_H