mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
20 lines
399 B
C#
20 lines
399 B
C#
using NewHorizons.Utility;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
[JsonObject]
|
|
public class LavaModule : VariableSizeModule
|
|
{
|
|
/// <summary>
|
|
/// Size of the lava sphere
|
|
/// </summary>
|
|
public float Size;
|
|
|
|
/// <summary>
|
|
/// Tint of the lava
|
|
/// </summary>
|
|
public MColor Tint;
|
|
}
|
|
}
|