Implement experience multipliers.

This commit is contained in:
Zimmermann Gyula
2017-01-12 18:58:39 +01:00
parent bd3639e81d
commit 1544f24663
5 changed files with 89 additions and 1 deletions

View File

@@ -227,4 +227,10 @@ namespace OpenRA.Mods.Common.Traits
[RequireExplicitImplementation]
public interface IPowerModifier { int GetPowerModifier(); }
[RequireExplicitImplementation]
public interface IGivesExperienceModifier { int GetGivesExperienceModifier(); }
[RequireExplicitImplementation]
public interface IGainsExperienceModifier { int GetGainsExperienceModifier(); }
}