23 lines
498 B
TypeScript
23 lines
498 B
TypeScript
import { Main } from './main';
|
|
|
|
export class Sound {
|
|
private _Main: Main;
|
|
|
|
volumeInput: HTMLInputElement = document.querySelector(
|
|
'.ntsh_soundsettings-volume',
|
|
);
|
|
eqLowInput: HTMLInputElement = document.querySelector(
|
|
'.ntsh_soundsettings-eqlow',
|
|
);
|
|
eqMidInput: HTMLInputElement = document.querySelector(
|
|
'.ntsh_soundsettings-eqmid',
|
|
);
|
|
eqHighInput: HTMLInputElement = document.querySelector(
|
|
'.ntsh_soundsettings-eqhigh',
|
|
);
|
|
|
|
constructor(Main: Main) {
|
|
this._Main = Main;
|
|
}
|
|
}
|