diff options
Diffstat (limited to 'Penguloon/Objects/CannonObject.cs')
| -rw-r--r-- | Penguloon/Objects/CannonObject.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Penguloon/Objects/CannonObject.cs b/Penguloon/Objects/CannonObject.cs index 916e617..41ed9bf 100644 --- a/Penguloon/Objects/CannonObject.cs +++ b/Penguloon/Objects/CannonObject.cs @@ -14,6 +14,7 @@ namespace Penguloon.Objects this.TileSpanY = 1; this.Range = Map.TileWidth * 3f; this.AttackSpeedMS = 2500; + this.infoText = map.Level.ParentScene.Main.Resources.GetString(Resource.String.ObjectCannon); } public CannonObject(Map map) : base(map) @@ -23,6 +24,7 @@ namespace Penguloon.Objects this.TileSpanY = 1; this.Range = Map.TileWidth * 3f; this.AttackSpeedMS = 2500; + this.infoText = map.Level.ParentScene.Main.Resources.GetString(Resource.String.ObjectCannon); } public override void DrawUnique(float deltaTime) |
