quantum-space-buddies/QSB/Utility/UsedInUnityProjectAttribute.cs
2022-08-27 11:54:14 -07:00

10 lines
260 B
C#

using System;
namespace QSB.Utility;
/// <summary>
/// denotes that the given type is used in the unity project
/// and therefore caution should be used when moving/renaming/deleting
/// </summary>
public class UsedInUnityProjectAttribute : Attribute { }