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

17 lines
506 B
C#
Raw Permalink Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Website.Common.Models
{
using System.Collections.Generic;
using Core.Model.PvpServer;
using Core.Model.Server.PvpServer;
public interface IPvpAdministrator
{
List<Item> GetItems(List<Item> items);
List<Skill> GetSkills(List<Skill> skills);
List<Weapon> GetWeapons(List<Weapon> weapons);
List<PvpClass> GetPvpClasses(List<PvpClass> pvpClasses);
List<BenefitItem> GetBenefitItems(List<BenefitItem> benefitItems);
}
}