Pixel-Composer/scripts/__panel_empty/__panel_empty.gml

9 lines
161 B
Plaintext
Raw Normal View History

2023-05-28 20:57:54 +02:00
function Panel_Empty() : PanelContent() constructor {
2023-06-04 18:28:29 +02:00
title = "";
2023-05-28 20:57:54 +02:00
w = ui(640);
h = ui(320);
function drawContent(panel) {
//Implement draw code here
}
}