7 lines
152 B
C#
7 lines
152 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu]
|
|
public class PlayerStats : ScriptableObject {
|
|
public float movementSpeed = 3f;
|
|
public float suckSpeed = 1f;
|
|
} |