Don't crash when modifying constructor

Tweak log level of assembly resolver.
Events relating to game initialization and shutdown.
Plugin manager loads plugins right before the dependency manager is attached.
This commit is contained in:
Westin Miller
2017-09-11 18:28:53 -07:00
parent e57f885d3b
commit 57acb274c6
8 changed files with 152 additions and 8 deletions

View File

@@ -103,6 +103,16 @@ namespace Torch.API
/// Initialize the Torch instance.
/// </summary>
void Init();
/// <summary>
/// The current state of the game this instance of torch is controlling.
/// </summary>
TorchGameState GameState { get; }
/// <summary>
/// Event raised when <see cref="GameState"/> changes.
/// </summary>
event TorchGameStateChangedDel GameStateChanged;
}
/// <summary>
@@ -121,6 +131,6 @@ namespace Torch.API
/// </summary>
public interface ITorchClient : ITorchBase
{
}
}