Files
LNXSDK/Kha/Tools/khamake/src/Exporters/DebugHtml5Exporter.ts
2025-01-22 16:18:30 +01:00

10 lines
228 B
TypeScript

import {Html5Exporter} from './Html5Exporter';
import {Options} from '../Options';
export class DebugHtml5Exporter extends Html5Exporter {
constructor(options: Options) {
super(options);
this.isDebug = true;
}
}