mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
21 lines
597 B
C#
21 lines
597 B
C#
using Newtonsoft.Json;
|
|
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Modules.Volumes
|
|
{
|
|
[JsonObject]
|
|
public class OxygenVolumeInfo : VolumeInfo
|
|
{
|
|
/// <summary>
|
|
/// Does this volume contain trees? This will change the notification from "Oxygen tank refilled" to "Trees detected, oxygen tank refilled".
|
|
/// </summary>
|
|
public bool treeVolume;
|
|
|
|
/// <summary>
|
|
/// Whether to play the oxygen tank refill sound or just fill quietly.
|
|
/// </summary>
|
|
[DefaultValue(true)] public bool playRefillAudio = true;
|
|
}
|
|
|
|
}
|