10 lines
244 B
C#
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;
|
|
}
|