Player/IPushable.cs

Interface for pushable actors, exposes a single PushForce float property with get and set.

namespace BrickJam;

public interface IPushable
{
	float PushForce { get; set; }
}