16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
|
import { RequestHandler } from "express";
|
||
|
|
||
|
interface ITunables {
|
||
|
prohibit_skip_mission_start_timer?: any;
|
||
|
prohibit_fov_override?: any;
|
||
|
}
|
||
|
|
||
|
const tunablesController: RequestHandler = (_req, res) => {
|
||
|
const tunablesSet: ITunables = {};
|
||
|
//tunablesSet.prohibit_skip_mission_start_timer = 1;
|
||
|
//tunablesSet.prohibit_fov_override = 1;
|
||
|
res.json(tunablesSet);
|
||
|
};
|
||
|
|
||
|
export { tunablesController };
|