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

14 lines
261 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;
2026-05-30 11:20:59 +07:00
public NetworkBool jump;
2026-04-29 13:10:00 +07:00
public Quaternion rot;
}
}