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