2019-09-30 01:24:02 +02:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-10-16 19:43:05 +02:00
|
|
|
/// None generic base class for all Atoms.
|
2019-09-30 01:24:02 +02:00
|
|
|
/// </summary>
|
|
|
|
public abstract class BaseAtom : ScriptableObject
|
|
|
|
{
|
2019-10-15 20:44:25 +02:00
|
|
|
/// <summary>
|
2019-10-16 19:43:05 +02:00
|
|
|
/// A description of the Atom made for documentation purposes.
|
2019-10-15 20:44:25 +02:00
|
|
|
/// </summary>
|
2019-09-30 01:24:02 +02:00
|
|
|
[SerializeField]
|
2020-04-24 06:40:54 +02:00
|
|
|
[TextArea(3, 6)]
|
2019-09-30 01:24:02 +02:00
|
|
|
private string _developerDescription;
|
|
|
|
}
|
|
|
|
}
|