mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
23 lines
747 B
C#
23 lines
747 B
C#
using NewHorizons.External.SerializableEnums;
|
|
using Newtonsoft.Json;
|
|
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Modules.Volumes.VolumeInfos
|
|
{
|
|
[JsonObject]
|
|
public class LoadCreditsVolumeInfo : VolumeInfo
|
|
{
|
|
[DefaultValue("none")] public NHCreditsType creditsType = NHCreditsType.None;
|
|
|
|
/// <summary>
|
|
/// Text displayed in orange on game over. For localization, put translations under UI.
|
|
/// </summary>
|
|
public string gameOverText;
|
|
|
|
/// <summary>
|
|
/// The type of death the player will have if they enter this volume. Don't set to have the camera just fade out.
|
|
/// </summary>
|
|
[DefaultValue("default")] public NHDeathType? deathType = null;
|
|
}
|
|
}
|