mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 12:05:23 +01:00
18 lines
411 B
C#
18 lines
411 B
C#
using Newtonsoft.Json;
|
|
|
|
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;
|
|
}
|
|
} |