12 lines
211 B
C#
12 lines
211 B
C#
namespace rail
|
|
{
|
|
public interface IRailStatisticHelper
|
|
{
|
|
IRailPlayerStats CreatePlayerStats(RailID player);
|
|
|
|
IRailGlobalStats GetGlobalStats();
|
|
|
|
RailResult AsyncGetNumberOfPlayer(string user_data);
|
|
}
|
|
}
|