mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
18 lines
414 B
C#
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;
|
|
}
|
|
}
|