Start of transition to OTK

This commit is contained in:
2019-11-24 00:17:21 -05:00
parent c04f2f1b78
commit 9387611b19
8 changed files with 8 additions and 91 deletions

View File

@@ -9,7 +9,7 @@ namespace RecrownedAthenaeum.ContentSystem
/// <summary>
/// Wrapper for the content manager that helps with controlling it by adding automated multithreaded content loading.
/// </summary>
public class ContentManagerController
public class AssetManager
{
Thread thread;
readonly ContentManager contentManager;
@@ -40,7 +40,7 @@ namespace RecrownedAthenaeum.ContentSystem
/// Wraps the <see cref="ContentManager"/>.
/// </summary>
/// <param name="contentManager">The manager to wrap.</param>
public ContentManagerController(ContentManager contentManager)
public AssetManager()
{
this.contentManager = contentManager;
assets = new Dictionary<string, Object>();

View File

@@ -1,7 +1,7 @@
namespace RecrownedAthenaeum.ContentSystem
{
/// <summary>
/// Modifies the given path based on a name. Used to simplify long paths for the <see cref="ContentManagerController"/>
/// Modifies the given path based on a name. Used to simplify long paths for the <see cref="AssetManager"/>
/// </summary>
public interface IContentPathResolver
{