mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2025-01-09 04:41:30 +01:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
export default class Configuration {
|
|
public static Default: Configuration = { hasAudio: false };
|
|
|
|
hasAudio: boolean = false;
|
|
}
|