2018-09-12 16:34:44 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RhythmBullet.Zer01HD.Utilities.ContentSystem
|
|
|
|
|
{
|
2018-11-01 00:05:10 -05:00
|
|
|
|
struct LoadableContent
|
2018-09-12 16:34:44 -05:00
|
|
|
|
{
|
|
|
|
|
internal Type type;
|
|
|
|
|
internal string assetName;
|
2018-11-01 00:05:10 -05:00
|
|
|
|
internal bool usePathModifier;
|
2018-09-12 16:34:44 -05:00
|
|
|
|
|
2018-11-01 00:05:10 -05:00
|
|
|
|
public LoadableContent(string assetName, Type type, bool usePathModifier)
|
2018-09-12 16:34:44 -05:00
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
this.assetName = assetName;
|
2018-11-01 00:05:10 -05:00
|
|
|
|
this.usePathModifier = usePathModifier;
|
2018-09-12 16:34:44 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|