mirror of
https://github.com/ConjureETS/Bomberman.git
synced 2026-03-24 10:20:58 +00:00
8 lines
144 B
C#
8 lines
144 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu]
|
|
public class PlayerData : ScriptableObject {
|
|
public float speed = 1f;
|
|
|
|
public float turnSpeed = 1f;
|
|
} |