forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
17
Kha/Tools/khamake/src/Exporters/NodeExporter.ts
Normal file
17
Kha/Tools/khamake/src/Exporters/NodeExporter.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import * as path from 'path';
|
||||
import {Html5Exporter} from './Html5Exporter';
|
||||
import {Options} from '../Options';
|
||||
|
||||
export class NodeExporter extends Html5Exporter {
|
||||
constructor(options: Options) {
|
||||
super(options);
|
||||
}
|
||||
|
||||
backend(): string {
|
||||
return 'Node';
|
||||
}
|
||||
|
||||
isNode() {
|
||||
return true;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user