diff --git a/asdlteroids.csproj b/asdlteroids.csproj
index 5524382..448db1d 100644
--- a/asdlteroids.csproj
+++ b/asdlteroids.csproj
@@ -5,6 +5,9 @@
net6.0
asdlteroids
enable
+ true
+ true
+ true
enable
diff --git a/src/Scene.cs b/src/Scene.cs
index 1498d7d..763eeaf 100644
--- a/src/Scene.cs
+++ b/src/Scene.cs
@@ -10,6 +10,7 @@ class Scene
private Renderer renderer;
private static Scene? instance;
+ public Ufo ufo;
public HashSet Shots;
public HashSet Asteroids;
public int Score = 0;
@@ -20,6 +21,7 @@ class Scene
public Scene(Renderer renderer)
{
this.ship = new Ship(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2);
+ this.ufo = new Ufo(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2);
this.ui = new UI();
this.Shots = new HashSet();
this.Asteroids = new HashSet();
@@ -54,6 +56,7 @@ class Scene
var entities = new List