Add Playerlist (tablist)

This commit is contained in:
VegaZ
2018-10-03 19:02:48 +02:00
parent 55c95cc5c3
commit e7b2c06e92
7 changed files with 140 additions and 0 deletions

20
Server/Util/ListPlayer.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
/**
* @overview Life of German Reallife - Util ListPlayer ListPlayer.cs
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Server.Util
{
public class ListPlayer : Script
{
public int Id;
public string Name;
public int Ping;
}
}