Introduces ReloadModifier

and renames ROF -> ReloadDelay
This commit is contained in:
reaperrr
2014-07-26 21:41:56 +02:00
parent fce732b060
commit 4469b5f5ca
7 changed files with 27 additions and 12 deletions

View File

@@ -170,6 +170,7 @@ namespace OpenRA.Traits
public interface IDamageModifier { int GetDamageModifier(Actor attacker, DamageWarhead warhead); }
public interface ISpeedModifier { int GetSpeedModifier(); }
public interface IFirepowerModifier { int GetFirepowerModifier(); }
public interface IReloadModifier { int GetReloadModifier(); }
public interface ILoadsPalettes { void LoadPalettes(WorldRenderer wr); }
public interface IPaletteModifier { void AdjustPalette(IReadOnlyDictionary<string, MutablePalette> b); }
public interface IPips { IEnumerable<PipType> GetPips(Actor self); }