mirror of
https://github.com/Astatin3/autoPlanner.git
synced 2026-06-08 23:58:00 -06:00
30 lines
417 B
Python
30 lines
417 B
Python
|
|
pg = None
|
||
|
|
render = None
|
||
|
|
|
||
|
|
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()
|