Panel, header, footer

This commit is contained in:
2025-11-14 16:13:39 +01:00
parent 0ea49051d0
commit 41221bdd77
36 changed files with 1886 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
package components;
import openfl.display.Shape;
class NekoRectangle extends Shape {
public function new(pColor:Int = 0xFF0000, pX:Int = 0, pY:Int = 0, pWidth:Int = 100, pHeight:Int = 100) {
super();
graphics.beginFill(pColor);
graphics.drawRect(pX, pY, pWidth, pHeight);
graphics.endFill();
}
}