Add support for playing an InsufficientFunds warning

This commit is contained in:
abcdefg30
2016-02-15 13:06:41 +01:00
parent 494f71a8bb
commit be1080f7bd
5 changed files with 89 additions and 1 deletions

View File

@@ -124,4 +124,11 @@ namespace OpenRA.Mods.Common.Traits
bool AdjacentWallCanConnect(Actor self, CPos wallLocation, string wallType, out CVec facing);
void SetDirty();
}
[RequireExplicitImplementation]
interface INotifyInsufficientFunds
{
void InsufficientFunds(Actor self);
void SufficientFunds(Actor self);
}
}