RAGECOOP-V/Server/Entities/EntitiesPlayer.cs

11 lines
260 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
namespace CoopServer.Entities
{
2021-08-14 21:49:23 +02:00
public class EntitiesPlayer
2021-07-07 13:36:25 +02:00
{
public string SocialClubName { get; set; }
public string Username { get; set; }
public float Latency { get; set; }
2021-07-07 13:36:25 +02:00
public EntitiesPed Ped = new();
}
}