13 lines
228 B
C#
13 lines
228 B
C#
using Fusion;
|
|
using UnityEngine;
|
|
|
|
namespace OnlyScove.Scripts
|
|
{
|
|
public struct PlayerInputData : INetworkInput
|
|
{
|
|
public Vector2 Direction;
|
|
public NetworkBool sprint;
|
|
public Quaternion rot;
|
|
}
|
|
}
|