版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
240 B

  1. const code = `
  2. import * as PIXI from 'pixi.js';
  3. export class MainApplication {
  4. constructor(options) {
  5. super(options.baseWidth, options.baseHeight, options);
  6. }
  7. test(){
  8. PIXI.test();
  9. }
  10. }
  11. `;
  12. module.exports = code;