recrownedgtk/RecrownedAthenaeum/ContentSystem/ContentLoad.cs

19 lines
431 B
C#
Raw Normal View History

using System;
namespace RecrownedAthenaeum.ContentSystem
{
struct LoadableContent
{
internal Type type;
internal string assetName;
internal bool usePathModifier;
public LoadableContent(string assetName, Type type, bool usePathModifier)
{
this.type = type;
this.assetName = assetName;
this.usePathModifier = usePathModifier;
}
}
}