Extract auto-selection-size into its own interface.

This commit is contained in:
Paul Chote
2013-02-24 13:11:43 +13:00
parent 000a5eaa56
commit 0703f3f164
3 changed files with 16 additions and 10 deletions

View File

@@ -35,6 +35,7 @@ namespace OpenRA.Traits
public interface ITick { void Tick(Actor self); }
public interface IRender { IEnumerable<Renderable> Render(Actor self); }
public interface IAutoSelectionSize { int2 SelectionSize(Actor self); }
public interface IIssueOrder
{