FiE-Game/Assets/Scripts/FiePrefabInfo.cs

13 lines
232 B
C#
Raw Normal View History

2018-11-20 20:10:49 +01:00
using System;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class FiePrefabInfo : Attribute
{
public readonly string path;
public FiePrefabInfo(string path)
{
this.path = path;
}
}