mirror of
https://github.com/Astatin3/autoPlanner.git
synced 2026-06-08 23:58:00 -06:00
Good tabs
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user