16 lines
264 B
ActionScript
16 lines
264 B
ActionScript
class TreePannel : DockPanel {
|
|
void onMenuBar() {
|
|
if (menuItem("Hey!")) {
|
|
print("clicked");
|
|
}
|
|
}
|
|
|
|
void onRender() {
|
|
root = getRoot();
|
|
renderEntity(root);
|
|
}
|
|
|
|
void renderEntity(Entity entity) {
|
|
|
|
}
|
|
} |