RAGECOOP-V/Server/Entities/EntitiesPlayer.cs
2021-07-07 13:36:25 +02:00

10 lines
210 B
C#

namespace CoopServer.Entities
{
class EntitiesPlayer
{
public string SocialClubName { get; set; }
public string Username { get; set; }
public EntitiesPed Ped = new();
}
}