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