summaryrefslogtreecommitdiff
path: root/Penguloon/Objects/PenguinObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/Objects/PenguinObject.cs')
-rw-r--r--Penguloon/Objects/PenguinObject.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Penguloon/Objects/PenguinObject.cs b/Penguloon/Objects/PenguinObject.cs
index abb3c3a..a4fa389 100644
--- a/Penguloon/Objects/PenguinObject.cs
+++ b/Penguloon/Objects/PenguinObject.cs
@@ -14,6 +14,7 @@ namespace Penguloon.Objects
this.TileSpanY = 1;
this.Range = Map.TileWidth * 2;
this.AttackSpeedMS = 1000;
+ this.infoText = map.Level.ParentScene.Main.Resources.GetString(Resource.String.ObjectPenguin);
}
public PenguinObject(Map map) : base(map)
@@ -23,6 +24,7 @@ namespace Penguloon.Objects
this.TileSpanY = 1;
this.Range = Map.TileWidth * 2;
this.AttackSpeedMS = 1000;
+ this.infoText = map.Level.ParentScene.Main.Resources.GetString(Resource.String.ObjectPenguin);
}
public override void DrawUnique(float deltaTime)