mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +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 { }
|