Made SupportPower abstract
Because it really needs to be.
This commit is contained in:
committed by
Gustas Kažukauskas
parent
fc8103098e
commit
0f7b24a8c0
@@ -158,13 +158,13 @@ namespace OpenRA.Mods.Common.Traits
|
||||
protected SupportPowerInfo() { OrderName = GetType().Name + "Order"; }
|
||||
}
|
||||
|
||||
public class SupportPower : PausableConditionalTrait<SupportPowerInfo>
|
||||
public abstract class SupportPower : PausableConditionalTrait<SupportPowerInfo>
|
||||
{
|
||||
public readonly Actor Self;
|
||||
readonly SupportPowerInfo info;
|
||||
protected RadarPing ping;
|
||||
|
||||
public SupportPower(Actor self, SupportPowerInfo info)
|
||||
protected SupportPower(Actor self, SupportPowerInfo info)
|
||||
: base(info)
|
||||
{
|
||||
Self = self;
|
||||
|
||||
Reference in New Issue
Block a user