10 lines
205 B
C#
10 lines
205 B
C#
using Data;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public interface IDamageInflectorSetup
|
|
{
|
|
void Setup(Character attacker, [CanBeNull] WeaponStats weaponStats = null);
|
|
}
|
|
} |