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;
}
}