wire up bot creation properly in CreateMPPlayers etc

This commit is contained in:
Chris Forbes
2010-12-21 18:20:23 +13:00
parent 29fbeb2c5d
commit d320a689a2
4 changed files with 12 additions and 10 deletions

View File

@@ -184,7 +184,12 @@ namespace OpenRA.Traits
public interface IWorldLoaded { void WorldLoaded(World w); }
public interface ICreatePlayers { void CreatePlayers(World w); }
public interface IBot { void Activate(Player p); }
public interface IBotInfo { string Name { get; } }
public interface IBot
{
void Activate(Player p);
IBotInfo Info { get; }
}
public interface IActivity
{