Add a IAutoSelctionSizeInfo trait interface

This commit is contained in:
abcdefg30
2017-04-19 13:43:29 +02:00
committed by reaperrr
parent 767fd5438e
commit 2a3139dc39
6 changed files with 8 additions and 5 deletions

View File

@@ -95,6 +95,8 @@ namespace OpenRA.Traits
public interface ITick { void Tick(Actor self); }
public interface ITickRender { void TickRender(WorldRenderer wr, Actor self); }
public interface IRender { IEnumerable<IRenderable> Render(Actor self, WorldRenderer wr); }
public interface IAutoSelectionSizeInfo : ITraitInfoInterface { }
public interface IAutoSelectionSize { int2 SelectionSize(Actor self); }
public interface IIssueOrder