using NewHorizons.Utility;
using Newtonsoft.Json;
namespace NewHorizons.External.Modules.VariableSize
{
[JsonObject]
public class LavaModule : VariableSizeModule
{
///
/// Size of the lava sphere
///
public float Size;
///
/// Tint of the lava
///
public MColor Tint;
}
}