unity-atoms/Packages/Core/Runtime/Base/BaseAtom.cs
2019-10-15 20:44:25 +02:00

18 lines
414 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// None generic base class for all atoms.
/// </summary>
public abstract class BaseAtom : ScriptableObject
{
/// <summary>
/// A description of the Atom made for developers to document their Atoms.
/// </summary>
[SerializeField]
[Multiline]
private string _developerDescription;
}
}