mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
11 lines
261 B
C#
11 lines
261 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Attribute that makes an Atom searchable.
|
||
|
/// </summary>
|
||
|
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
|
||
|
public class AtomsSearchable : Attribute { }
|
||
|
}
|