9 lines
130 B
C#
9 lines
130 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
public interface IPainAnimationHandler
|
||
|
{
|
||
|
void HandlePain(float damage, Vector3 position);
|
||
|
}
|