12 lines
333 B
C#
12 lines
333 B
C#
|
namespace LOC.Website.Common.Models
|
|||
|
{
|
|||
|
using System.Collections.Generic;
|
|||
|
using Core.Model.Server.GameServer.CaptureThePig.Stats;
|
|||
|
using Core.Tokens.Client;
|
|||
|
|
|||
|
public interface ICaptureThePigAdministrator : IPvpAdministrator
|
|||
|
{
|
|||
|
List<PlayerUpdateToken> UploadStats(CaptureThePigGameStatsToken token);
|
|||
|
}
|
|||
|
}
|