Move StoresOre into Mods.RA

This commit is contained in:
Paul Chote
2010-07-08 19:32:07 +12:00
parent d9ba7ff90c
commit 476d40b317
5 changed files with 15 additions and 8 deletions

View File

@@ -56,6 +56,7 @@ namespace OpenRA.Traits
public interface INotifyEnterCell { void OnEnterCell(Actor self, int2 cell); }
public interface IProvideHazard { IEnumerable<HazardLayer.Hazard> HazardCells(Actor self); }
public interface IAvoidHazard { string Type { get; } }
public interface IStoreOre { int Capacity { get; }}
public interface ITerrainTypeModifier { string GetTerrainType(int2 cell); }
public interface ITerrainCost { float GetTerrainCost(int2 cell, Actor forActor); }