2019-12-05 16:22:58 +00:00

10 lines
244 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "FloatVariable", menuName = "Custom/Variables/New Float")]
public class FloatVariable : ScriptableObject
{
public float Value;
}