Mineplex2018-withcommit/Website/LOC.Website.Common/Models/ICaptureThePigAdministrator.cs

12 lines
333 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
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);
}
}