client_ui/template/Pixi/Component.template
2020-03-30 10:23:50 +08:00

23 lines
358 B
Plaintext

namespace {packageName} {
export class {className} extends {componentName} {
{variable}
public static URL:string = "{uiPath}";
public static createInstance():{className} {
{createInstance}
}
public constructor() {
super();
}
protected constructFromXML(xml: fgui.utils.XmlNode): void {
super.constructFromXML(xml);
{content}
}
}
}