mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
313 B
C#
15 lines
313 B
C#
using NewHorizons.Utility;
|
|
using Newtonsoft.Json;
|
|
using UnityEngine;
|
|
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
[JsonObject]
|
|
public class VariableSizeModule
|
|
{
|
|
/// <summary>
|
|
/// Scale this object over time
|
|
/// </summary>
|
|
public TimeValuePair[] curve;
|
|
}
|
|
} |