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