2D-Platformer/Assets/Scripts/Attributes/RootComponentAttribute.cs
2022-02-12 12:53:50 +02:00

9 lines
No EOL
139 B
C#

using System;
namespace Attributes
{
[AttributeUsage(AttributeTargets.Field)]
public class RootComponentAttribute : Attribute
{
}
}