using System; using System.Collections.Generic; using System.Linq; using System.Text; using VRage.Game.ModAPI.Ingame; namespace Sandbox.ModAPI.Ingame { public interface IMyMotorRotor : IMyCubeBlock { /// /// Gets whether the rotor is attached to a stator/suspension block /// bool IsAttached { get; } } }