mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:55:35 +00:00
15 lines
346 B
C#
15 lines
346 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 Dictionary<string,int> Items {get;set;} = new();
|
|
|
|
public float Health {get;set;}
|
|
public float Shield {get;set;}
|
|
}
|