Files
BABA_YAGA/Assets/Scripts/Duy/PlayerInputData.cs

13 lines
228 B
C#
Raw Normal View History

2026-04-11 18:13:40 +07:00
using Fusion;
2026-04-29 13:10:00 +07:00
using UnityEngine;
2026-04-11 18:13:40 +07:00
2026-04-29 13:10:00 +07:00
namespace OnlyScove.Scripts
2026-04-11 18:13:40 +07:00
{
2026-04-29 13:10:00 +07:00
public struct PlayerInputData : INetworkInput
{
public Vector2 Direction;
public NetworkBool sprint;
public Quaternion rot;
}
}