updated database with new functions

This commit is contained in:
n00b
2024-09-07 21:51:32 -04:00
parent 2ce04bbeca
commit 6836a07f2f
44 changed files with 970 additions and 523 deletions

View File

@@ -0,0 +1,14 @@
sub Circle(x,y,radius)
sub CircleFill(x,y,radius)
sub Ellipse(x,y,rx,ry)
sub EllipseFill(x,y,rx,ry)
sub FloodFill(x,y)
function GetPixel(x,y)
sub SetColor(c)
sub Line(x1, y1, x2, y2)
sub Poly(n, byref x, byref y)
sub Rect(x, y, w, h)
sub RectFill(x, y, w, h)
function RGB(r,g,b)
function RGBA(r,g,b,a)
sub PSet(x,y)