mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 13:58:00 +01:00
12 lines
232 B
C#
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;
|
|
}
|
|
}
|