mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
25 lines
646 B
C#
25 lines
646 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// The type of dream candle this is.
|
|
/// </summary>
|
|
[DefaultValue(DreamCandleType.Ground)] public DreamCandleType type = DreamCandleType.Ground;
|
|
|
|
/// <summary>
|
|
/// Whether the candle should start lit or extinguished.
|
|
/// </summary>
|
|
public bool startLit;
|
|
}
|
|
}
|