Remove redundant ISync and ITick from Attack* traits

ISync is implemented by AttackBase, so there's no need for other Attack traits to implement it again.
AttackTurreted inherits AttackFollow, which already implements ITick.
This commit is contained in:
reaperrr
2015-07-29 17:45:30 +02:00
parent c660d32051
commit 398f02c5db
4 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ namespace OpenRA.Mods.Common.Traits
public override object Create(ActorInitializer init) { return new AttackOmni(init.Self, this); }
}
class AttackOmni : AttackBase, ISync
class AttackOmni : AttackBase
{
public AttackOmni(Actor self, AttackOmniInfo info)
: base(self, info) { }