using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Sandbox.ModAPI.Ingame
{
///
/// Ship welder interface
///
public interface IMyShipWelder : IMyShipToolBase
{
///
/// True if welder is set to helper mode
///
bool HelpOthers { get; }
}
}