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