Scriptum/Assets/Scripts/FloatValue.cs

10 lines
185 B
C#
Raw Normal View History

2022-05-18 13:58:41 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu]
public class FloatValue : ScriptableObject
{
public float initialValue;
}