Start of transition to OTK
This commit is contained in:
@@ -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>();
|
||||
|
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user