FiE-Game/Assets/Scripts/FiePrefabInfo.cs

12 lines
232 B
C#

using System;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class FiePrefabInfo : Attribute
{
public readonly string path;
public FiePrefabInfo(string path)
{
this.path = path;
}
}