mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
299dc195e2
- Added the option to use a Constant in Atom References. Related to #58
15 lines
361 B
C#
15 lines
361 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `Vector2`. Inherits from `AtomReference<Vector2, Vector2Variable, Vector2Constant>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class Vector2Reference : AtomReference<
|
|
Vector2,
|
|
Vector2Variable,
|
|
Vector2Constant> { }
|
|
}
|