Refactoring.

This commit is contained in:
Harrison Deng 2020-06-27 17:07:01 -05:00
parent 9f6ef94f06
commit bb3d0bced5
5 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ using SlatedGameToolkit.Framework.Exceptions;
using SlatedGameToolkit.Framework.Graphics.OpenGL; using SlatedGameToolkit.Framework.Graphics.OpenGL;
using SlatedGameToolkit.Framework.Graphics.Window; using SlatedGameToolkit.Framework.Graphics.Window;
namespace SlatedGameToolkit.Framework.Loader { namespace SlatedGameToolkit.Framework.AssetSystem {
/// <summary> /// <summary>
/// A delegate that should modify a given path. /// A delegate that should modify a given path.
/// </summary> /// </summary>

View File

@ -1,6 +1,6 @@
using System; using System;
namespace SlatedGameToolkit.Framework.Loader namespace SlatedGameToolkit.Framework.AssetSystem
{ {
public interface IAssetUseable : IDisposable public interface IAssetUseable : IDisposable
{ {

View File

@ -2,7 +2,7 @@ using System;
using SlatedGameToolkit.Framework.Graphics.OpenGL; using SlatedGameToolkit.Framework.Graphics.OpenGL;
using SlatedGameToolkit.Framework.Graphics.Render; using SlatedGameToolkit.Framework.Graphics.Render;
using SlatedGameToolkit.Framework.Graphics.Window; using SlatedGameToolkit.Framework.Graphics.Window;
using SlatedGameToolkit.Framework.Loader; using SlatedGameToolkit.Framework.AssetSystem;
namespace SlatedGameToolkit.Framework.Graphics.Textures namespace SlatedGameToolkit.Framework.Graphics.Textures
{ {

View File

@ -1,4 +1,4 @@
using SlatedGameToolkit.Framework.Loader; using SlatedGameToolkit.Framework.AssetSystem;
namespace SlatedGameToolkit.Framework.Graphics.Textures namespace SlatedGameToolkit.Framework.Graphics.Textures
{ {

View File

@ -5,7 +5,7 @@ using System.Reflection;
namespace SlatedGameToolkit.Framework.Utilities namespace SlatedGameToolkit.Framework.Utilities
{ {
public static class EmbeddedResourceUtils public static class EmbeddedResUtils
{ {
public static string ReadEmbeddedResourceText(string name) { public static string ReadEmbeddedResourceText(string name) {
string res; string res;