2019-09-29 19:24:02 -04:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-10-16 13:43:05 -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>
|
2019-10-16 13:43:05 -04:00
|
|
|
/// A description of the Atom made for documentation purposes.
|
2019-10-15 14:44:25 -04:00
|
|
|
/// </summary>
|
2019-09-29 19:24:02 -04:00
|
|
|
[SerializeField]
|
2020-04-24 00:40:54 -04:00
|
|
|
[TextArea(3, 6)]
|
2019-09-29 19:24:02 -04:00
|
|
|
private string _developerDescription;
|
|
|
|
}
|
|
|
|
}
|