10 lines
155 B
C#
10 lines
155 B
C#
using Godot;
|
|
|
|
namespace Zennysoft.Ma.Adapter.Entity
|
|
{
|
|
public interface IKnockbackable
|
|
{
|
|
void Knockback(float impulse, Vector3 direction);
|
|
}
|
|
}
|