Make interface implementations explicit where possible in traits that implement INotifySold

This commit is contained in:
reaperrr
2016-10-20 18:51:01 +02:00
parent 22dcb1c66f
commit 61284d73dd
16 changed files with 53 additions and 53 deletions

View File

@@ -41,7 +41,7 @@ namespace OpenRA.Mods.Common.Traits.Render
ticks = info.Interval;
}
public void Tick(Actor self)
void ITick.Tick(Actor self)
{
if (!buildComplete || IsTraitDisabled)
return;
@@ -54,7 +54,7 @@ namespace OpenRA.Mods.Common.Traits.Render
}
}
public void BuildingComplete(Actor self)
void INotifyBuildComplete.BuildingComplete(Actor self)
{
buildComplete = true;
}