2018-09-12 21:34:44 +00: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 05:05:10 +00:00
|
|
|
|
struct LoadableContent
|
2018-09-12 21:34:44 +00:00
|
|
|
|
{
|
|
|
|
|
internal Type type;
|
|
|
|
|
internal string assetName;
|
2018-11-01 05:05:10 +00:00
|
|
|
|
internal bool usePathModifier;
|
2018-09-12 21:34:44 +00:00
|
|
|
|
|
2018-11-01 05:05:10 +00:00
|
|
|
|
public LoadableContent(string assetName, Type type, bool usePathModifier)
|
2018-09-12 21:34:44 +00:00
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
this.assetName = assetName;
|
2018-11-01 05:05:10 +00:00
|
|
|
|
this.usePathModifier = usePathModifier;
|
2018-09-12 21:34:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|