mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-25 04:18:07 +01:00
9 lines
166 B
Text
9 lines
166 B
Text
|
function Panel_Empty() : PanelContent() constructor {
|
||
|
title = "Title";
|
||
|
w = ui(640);
|
||
|
h = ui(320);
|
||
|
|
||
|
function drawContent(panel) {
|
||
|
//Implement draw code here
|
||
|
}
|
||
|
}
|