Good tabs

This commit is contained in:
Astatin3
2024-03-14 12:35:36 -06:00
parent 2dab7295ac
commit 5ee635352d
6 changed files with 334 additions and 72 deletions
+31
View File
@@ -0,0 +1,31 @@
pg = None
render = None
bottomBarHeight = 0
class export:
name = "Export"
def __init__(self, tmppg, tmprender):
global pg
pg = tmppg
global render
render = tmprender
def mouseDown(self, pos):
pass
def mouseUp(self, pos):
pass
def mouseMove(self, pos):
pass
def doubleClick(self, pos):
pass
def keyDown(self, key):
pass
def load(self):
render.clear()
pg.display.update()