More explanatory naming for Manager Init (Attach) and Dispose (Detach).

Torch.Client uses the registry to discover Steam's installation directory.
This commit is contained in:
Westin Miller
2017-08-18 16:19:59 -07:00
parent ceb272c0b4
commit 40eab15d69
14 changed files with 42 additions and 42 deletions

View File

@@ -12,13 +12,13 @@ namespace Torch.API.Managers
public interface IManager
{
/// <summary>
/// Initializes the manager. Called once this manager's dependencies have been initialized.
/// Attaches the manager to the session. Called once this manager's dependencies have been attached.
/// </summary>
void Init();
void Attach();
/// <summary>
/// Disposes the manager. Called before this manager's dependencies are disposed.
/// Detaches the manager from the session. Called before this manager's dependencies are detached.
/// </summary>
void Dispose();
void Detach();
}
}