Mineplex2018-withcommit/Website/LOC.Website.Common/Models/ICaptureThePigAdministrator.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

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);
}
}