90fbc397ff
Implemented gem transactions and source.
12 lines
330 B
C#
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);
|
|
}
|
|
}
|