ludumdare50/Assets/Scripts/PlayerStats.cs
2022-04-02 03:35:56 -04:00

7 lines
152 B
C#

using UnityEngine;
[CreateAssetMenu]
public class PlayerStats : ScriptableObject {
public float movementSpeed = 3f;
public float suckSpeed = 1f;
}