mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 03:28:26 +00:00
10 lines
260 B
C#
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 { }
|