2018-11-30 02:41:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2018-12-04 13:45:09 +00:00
|
|
|
|
namespace RecrownedAthenaeum.ContentSystem
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2019-01-20 07:31:01 +00:00
|
|
|
|
struct ContentData
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
|
|
|
|
internal Type type;
|
|
|
|
|
internal string assetName;
|
|
|
|
|
internal bool usePathModifier;
|
|
|
|
|
|
2019-01-20 07:31:01 +00:00
|
|
|
|
public ContentData(string assetName, Type type, bool usePathModifier)
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
this.assetName = assetName;
|
|
|
|
|
this.usePathModifier = usePathModifier;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|