Mineplex2018-withcommit/Website/LOC.Website.Common/Models/ICaptureThePigAdministrator.cs
Jonathan Williams 90fbc397ff Converted gem rewards to boolean return from website.
Implemented gem transactions and source.
2013-10-18 00:46:06 -07:00

12 lines
330 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<GemRewardToken> UploadStats(CaptureThePigGameStatsToken token);
}
}