You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
415 B
Plaintext
28 lines
415 B
Plaintext
|
2 years ago
|
package {packageName};
|
||
|
|
|
||
|
|
import fairygui.*;
|
||
|
|
|
||
|
|
class {className} extends {componentName}
|
||
|
|
{
|
||
|
|
{variable}
|
||
|
|
|
||
|
|
public static inline var URL:String = "{uiPath}";
|
||
|
|
|
||
|
|
public static function createInstance():{className}
|
||
|
|
{
|
||
|
|
{createInstance}
|
||
|
|
}
|
||
|
|
|
||
|
|
public function new()
|
||
|
|
{
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
private override function constructFromXML(xml:FastXML):Void
|
||
|
|
{
|
||
|
|
super.constructFromXML(xml);
|
||
|
|
|
||
|
|
{content}
|
||
|
|
}
|
||
|
|
}
|