using NewHorizons.External.Modules.Props.EyeOfTheUniverse; using Newtonsoft.Json; namespace NewHorizons.External.Modules { [JsonObject] public class EyeOfTheUniverseModule { /// /// Add custom travelers to the campfire sequence /// public EyeTravelerInfo[] eyeTravelers; /// /// Add instrument zones which contain puzzles to gather a quantum instrument. You can parent other props to these with `parentPath` /// public InstrumentZoneInfo[] instrumentZones; /// /// Add quantum instruments which cause their associated eye traveler to appear and instrument zones to disappear /// public QuantumInstrumentInfo[] quantumInstruments; } }