mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
30 lines
783 B
C#
30 lines
783 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("ground")] public DreamCandleType type = DreamCandleType.Ground;
|
|
|
|
/// <summary>
|
|
/// Whether the candle should start lit or extinguished.
|
|
/// </summary>
|
|
public bool startLit;
|
|
|
|
/// <summary>
|
|
/// A condition to set when the candle is lit.
|
|
/// </summary>
|
|
public DreamLightConditionInfo condition;
|
|
}
|
|
}
|