mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
9 lines
229 B
C#
9 lines
229 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
[UseIcon("atom-icon-teal")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Constants/Int", fileName = "IntConstant")]
|
|
public sealed class IntConstant : AtomBaseVariable<int> { }
|
|
}
|