mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
22 lines
432 B
C#
22 lines
432 B
C#
#region
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
#endregion
|
|
|
|
namespace NewHorizons.External.Modules
|
|
{
|
|
[JsonObject]
|
|
public class FocalPointModule
|
|
{
|
|
/// <summary>
|
|
/// Name of the primary planet in this binary system
|
|
/// </summary>
|
|
public string primary;
|
|
|
|
/// <summary>
|
|
/// Name of the secondary planet in this binary system
|
|
/// </summary>
|
|
public string secondary;
|
|
}
|
|
} |