init
This commit is contained in:
28
Ingame/IMyRadioAntenna.cs
Normal file
28
Ingame/IMyRadioAntenna.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Sandbox.ModAPI.Ingame
|
||||
{
|
||||
/// <summary>
|
||||
/// Antenna block interface
|
||||
/// </summary>
|
||||
public interface IMyRadioAntenna : IMyFunctionalBlock
|
||||
{
|
||||
/// <summary>
|
||||
/// Broadcasting/Receiving range (read-only)
|
||||
/// </summary>
|
||||
float Radius {get; }
|
||||
|
||||
/// <summary>
|
||||
/// Show shipname on hud (read-only)
|
||||
/// </summary>
|
||||
bool ShowShipName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if antena is broadcasting (read-only)
|
||||
/// </summary>
|
||||
bool IsBroadcasting { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user