using NewHorizons.External.Modules.SerializableEnums;
using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.Volumes.VolumeInfos
{
[JsonObject]
public class LoadCreditsVolumeInfo : VolumeInfo
{
[DefaultValue("fast")] public CreditsType creditsType = CreditsType.Fast;
///
/// Text displayed in orange on game over. For localization, put translations under UI.
///
public string gameOverText;
///
/// The type of death the player will have if they enter this volume.
///
[DefaultValue("default")] public DeathType deathType = DeathType.Default;
}
}