This commit is contained in:
Karrar
2024-03-27 22:26:13 +03:00
commit 0caf47a728
223 changed files with 32253 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using UnityEngine;
using Netick;
namespace Netick.Samples.FPS
{
public struct FPSInput : INetworkInput
{
public Vector2 YawPitch;
public Vector2 Movement;
public NetworkBool ShootInput;
}
}