diff options
Diffstat (limited to 'Penguloon/Enemies/BlueBalloon.cs')
| -rw-r--r-- | Penguloon/Enemies/BlueBalloon.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Penguloon/Enemies/BlueBalloon.cs b/Penguloon/Enemies/BlueBalloon.cs new file mode 100644 index 0000000..2490a09 --- /dev/null +++ b/Penguloon/Enemies/BlueBalloon.cs @@ -0,0 +1,16 @@ +using Penguloon.Levels; + +namespace Penguloon.Enemies +{ + class BlueBalloon : EnemyBase + { + public BlueBalloon(Map map) : base(map) + { + this.Texture = ContentManager.GetTexture("Enemies/blue"); + this.Speed = 45f; + this.Health = 1; + this.ChildObject = typeof(RedBalloon); + this.HealthToTake = 2; + } + } +}
\ No newline at end of file |
