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 }