Elo system update

This commit is contained in:
2026-04-29 13:10:00 +07:00
parent ed86fface3
commit 1222d39fdf
25 changed files with 462 additions and 293 deletions

View File

@@ -1,6 +1,12 @@
using Fusion;
using UnityEngine;
public partial struct _PlayerInputData : INetworkInput
namespace OnlyScove.Scripts
{
public float direction;
}
public struct PlayerInputData : INetworkInput
{
public Vector2 Direction;
public NetworkBool sprint;
public Quaternion rot;
}
}