20 lines
454 B
C#
20 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
static public class Settings
|
|
{
|
|
static public float cameraSensitivity = 100.0f;
|
|
|
|
static public float cameraFOV = 60.0f;
|
|
|
|
static public float masterVolume = 100.0f;
|
|
static public float sfxVolume = 100.0f;
|
|
static public float bgmVolume = 100.0f;
|
|
static public bool inverseX = false;
|
|
static public bool inverseY = false;
|
|
}
|
|
|