cirnogodot/Scripts/Utils/SessionSettings.cs

15 lines
346 B
C#
Raw Normal View History

2025-02-27 08:37:55 +01:00
using System;
using System.Collections.Generic;
namespace Cirno.Scripts.Utils;
public class SessionSettings
{
public bool SkipDialogues { get; set; } = false;
public bool GodMode { get; set; } = false;
public Dictionary<string,int> Items {get;set;} = new();
public float Health {get;set;}
public float Shield {get;set;}
}