Crates: Part 2

This commit is contained in:
Paul Chote
2010-01-27 20:55:11 +13:00
parent abe1b3c1ea
commit cc4c137038
8 changed files with 114 additions and 3 deletions

View File

@@ -55,6 +55,13 @@ namespace OpenRa.Traits
bool IsCrushableBy(UnitMovementType umt, Player player);
bool IsPathableCrush(UnitMovementType umt, Player player);
}
public interface ICrateAction
{
int SelectionShares { get; }
void Activate(Actor collector);
}
public struct Renderable
{
public readonly Sprite Sprite;