Rename tesla attack logic and move to Mods.Cnc.

This commit is contained in:
Paul Chote
2017-02-04 17:48:55 +00:00
parent ba69bfe494
commit a8d46adb2d
12 changed files with 72 additions and 38 deletions

View File

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