mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Shuttle
|
|
{
|
|
[JsonObject]
|
|
public class GravityCannonInfo : GeneralPropInfo
|
|
{
|
|
/// <summary>
|
|
/// Unique ID for the shuttle that pairs with this gravity cannon
|
|
/// </summary>
|
|
public string shuttleID;
|
|
|
|
/// <summary>
|
|
/// Ship log fact revealed when retrieving the shuttle to this pad. Optional.
|
|
/// </summary>
|
|
public string retrieveReveal;
|
|
|
|
/// <summary>
|
|
/// Ship log fact revealed when launching from this pad. Optional.
|
|
/// </summary>
|
|
public string launchReveal;
|
|
|
|
/// <summary>
|
|
/// Will create a modern Nomai computer linked to this gravity cannon.
|
|
/// </summary>
|
|
public NomaiComputerInfo computer;
|
|
|
|
/// <summary>
|
|
/// Position of the interface used to launc the shuttle
|
|
/// </summary>
|
|
public GeneralPropInfo controls;
|
|
}
|
|
}
|