mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
19 lines
429 B
C#
19 lines
429 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// None generic base class for all Atoms.
|
|
/// </summary>
|
|
[AtomsSearchable]
|
|
public abstract class BaseAtom : ScriptableObject
|
|
{
|
|
/// <summary>
|
|
/// A description of the Atom made for documentation purposes.
|
|
/// </summary>
|
|
[SerializeField]
|
|
[TextArea(3, 6)]
|
|
private string _developerDescription;
|
|
}
|
|
}
|