mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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);
|
|
}
|
|
}
|