Files
HauntedBloodlines/Assets/Scripts/SaveLoad/GameOptionsData.cs
2025-05-29 22:31:40 +03:00

15 lines
318 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class GameOptionsData
{
public float masterVolume;
public int screenResolutionIndex;
public int graphicsQualityIndex;
public bool whiteLedgesAreOn = true;
// Add other options as needed
}