mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
19 lines
368 B
C#
19 lines
368 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
[JsonObject]
|
|
public class TimeValuePair
|
|
{
|
|
/// <summary>
|
|
/// A specific point in time
|
|
/// </summary>
|
|
public float time;
|
|
|
|
/// <summary>
|
|
/// The value for this point in time
|
|
/// </summary>
|
|
public float value;
|
|
}
|
|
}
|