15 lines
278 B
C#
15 lines
278 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace NBF
|
|
{
|
|
public class FPlayerData : MonoService<FPlayerData>
|
|
{
|
|
public bool Run;
|
|
public bool IsGrounded;
|
|
public float Speed;
|
|
public float RotationSpeed;
|
|
|
|
public Vector2 MoveInput;
|
|
}
|
|
} |