Items/Pickups/LongJumpPickup.cs
/// <summary>
/// A pickup that grants the long jump module to the player
/// </summary>
public sealed class LongJumpPickup : BasePickup
{
	protected override bool OnPickup( Player player, PlayerInventory inventory )
	{
		// TODO: fix me
		return true;
	}
}