Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Entity/IKnockbackable.cs

10 lines
155 B
C#

using Godot;
namespace Zennysoft.Ma.Adapter.Entity
{
public interface IKnockbackable
{
void Knockback(float impulse, Vector3 direction);
}
}