mirror of
https://github.com/Kaveinator/NetickProForUnity.git
synced 2025-10-27 10:19:07 -07:00
12 lines
237 B
C#
12 lines
237 B
C#
using UnityEngine;
|
|
using Netick;
|
|
|
|
namespace Netick.Samples.FPS
|
|
{
|
|
public struct FPSInput : INetworkInput
|
|
{
|
|
public Vector2 YawPitch;
|
|
public Vector2 Movement;
|
|
public NetworkBool ShootInput;
|
|
}
|
|
} |