6 lines
149 B
C#
6 lines
149 B
C#
namespace GameCore.Combat.Interfaces;
|
|
|
|
public interface IWeaponDataService
|
|
{
|
|
bool TryGetWeaponData(string weaponId, out WeaponData weaponData);
|
|
} |