mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2025-01-09 04:41:30 +01:00
25 lines
726 B
TypeScript
25 lines
726 B
TypeScript
import { ClavierDisposition } from "./clavierDisposition";
|
|
import { Theme } from "./theme";
|
|
import { VolumeSon } from "./volumeSon";
|
|
|
|
export default class Configuration {
|
|
public static Default: Configuration = {
|
|
hasAudio: false,
|
|
afficherRegles: true,
|
|
afficherChrono: false,
|
|
volumeSon: VolumeSon.Normal,
|
|
disposition: ClavierDisposition.Azerty,
|
|
theme: Theme.Sombre,
|
|
haptique: false,
|
|
changelog: 0,
|
|
};
|
|
|
|
hasAudio: boolean = false;
|
|
afficherRegles: boolean = true;
|
|
afficherChrono: boolean = false;
|
|
volumeSon: VolumeSon = VolumeSon.Normal;
|
|
disposition: ClavierDisposition = ClavierDisposition.Azerty;
|
|
theme: Theme = Theme.Sombre;
|
|
haptique: boolean = false;
|
|
changelog: number = 0;
|
|
}
|