c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
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);
|
|
}
|
|
}
|