unity-atoms/Packages/Core/Runtime/Base/BaseAtom.cs

18 lines
414 B
C#
Raw Normal View History

2019-09-29 19:24:02 -04:00
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
2019-10-15 14:44:25 -04:00
/// None generic base class for all atoms.
2019-09-29 19:24:02 -04:00
/// </summary>
public abstract class BaseAtom : ScriptableObject
{
2019-10-15 14:44:25 -04:00
/// <summary>
/// A description of the Atom made for developers to document their Atoms.
/// </summary>
2019-09-29 19:24:02 -04:00
[SerializeField]
[Multiline]
private string _developerDescription;
}
}