summaryrefslogtreecommitdiff
path: root/Penguloon/Enemies/RedBalloon.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/Enemies/RedBalloon.cs')
-rw-r--r--Penguloon/Enemies/RedBalloon.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Penguloon/Enemies/RedBalloon.cs b/Penguloon/Enemies/RedBalloon.cs
new file mode 100644
index 0000000..cfe9caf
--- /dev/null
+++ b/Penguloon/Enemies/RedBalloon.cs
@@ -0,0 +1,15 @@
+using Penguloon.Levels;
+
+namespace Penguloon.Enemies
+{
+ class RedBalloon : EnemyBase
+ {
+ public RedBalloon(Map map) : base(map)
+ {
+ this.Texture = ContentManager.GetTexture("Enemies/red");
+ this.Speed = 135f;
+ this.Health = 1;
+ this.ChildObject = null;
+ }
+ }
+} \ No newline at end of file