2023-03-07 10:08:30 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-03-08 17:00:43 +08:00
|
|
|
|
static public class Settings
|
2023-03-07 10:08:30 +08:00
|
|
|
|
{
|
2023-03-08 17:00:43 +08:00
|
|
|
|
static public float cameraSensitivity = 100.0f;
|
2023-03-07 10:08:30 +08:00
|
|
|
|
|
2023-03-17 00:31:30 +08:00
|
|
|
|
static public float cameraFOV = 60.0f;
|
2023-03-07 10:08:30 +08:00
|
|
|
|
|
2023-03-08 17:00:43 +08:00
|
|
|
|
static public float masterVolume = 100.0f;
|
|
|
|
|
static public float sfxVolume = 100.0f;
|
|
|
|
|
static public float bgmVolume = 100.0f;
|
2023-03-25 02:38:56 +08:00
|
|
|
|
static public bool inverseX = false;
|
|
|
|
|
static public bool inverseY = false;
|
2023-03-07 10:08:30 +08:00
|
|
|
|
}
|
2023-03-08 17:00:43 +08:00
|
|
|
|
|