cirnogodot/Scripts/Utils/SessionSettings.cs
2025-04-02 18:39:37 +02:00

24 lines
No EOL
541 B
C#

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 bool AllowSaving { get; set; } = false;
public Godot.Collections.Dictionary<string, int> Items { get; set; } = new();
public int LevelNumber { get; set; } = 0;
public float Health { get; set; }
public float Shield { get; set; }
public void NewSession()
{
Items = new();
}
}