11 lines
212 B
C#
11 lines
212 B
C#
|
using SharedLibraryCore;
|
|||
|
using Stats.Client.Game;
|
|||
|
|
|||
|
namespace Stats.Client.Abstractions
|
|||
|
{
|
|||
|
public interface IWeaponNameParser
|
|||
|
{
|
|||
|
WeaponInfo Parse(string weaponName, Server.Game gameName);
|
|||
|
}
|
|||
|
}
|