mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
10 lines
306 B
C#
10 lines
306 B
C#
|
using UnityEngine;
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Function x 2 of type `Vector2`. Inherits from `AtomFunction<Vector2, Vector2>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-sand")]
|
||
|
public abstract class Vector2Vector2Function : AtomFunction<Vector2, Vector2> { }
|
||
|
}
|