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

@@ -250,7 +250,7 @@ namespace Torch
MySession.OnUnloading += OnSessionUnloading;
MySession.OnUnloaded += OnSessionUnloaded;
RegisterVRagePlugin();
Managers.Init();
Managers.Attach();
_init = true;
}
@@ -318,7 +318,7 @@ namespace Torch
/// <inheritdoc />
public virtual void Dispose()
{
Managers.Dispose();
Managers.Detach();
}
/// <inheritdoc />