using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External.Modules.Props.EchoesOfTheEye
{
[JsonObject]
public class DreamCandleInfo : GeneralPropInfo
{
///
/// The type of dream candle this is.
///
[DefaultValue("ground")] public DreamCandleType type = DreamCandleType.Ground;
///
/// Whether the candle should start lit or extinguished.
///
public bool startLit;
}
}