2023-03-25 15:15:24 -04:00

19 lines
424 B
C#

using NewHorizons.External.Modules.SerializableData;
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;
}
}