Files
bullet-hell-jam-2022/Assets/Scripts/Core/Settings.cs

21 lines
354 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Settings : MonoBehaviour
{
public float musicVolume, sfxVolume;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}