9 lines
142 B
C#
9 lines
142 B
C#
using Godot;
|
|
|
|
namespace Zennysoft.Game.Ma;
|
|
|
|
public interface IKnockbackable
|
|
{
|
|
public void Knockback(float impulse, Vector3 direction);
|
|
}
|