Skip to content

Instantly share code, notes, and snippets.

from scene import *
class Window (Layer):
# Create a default window
def __init__(self,p,bounds):
Layer.__init__(self, bounds)
# Add ourself to parent layer list
if p: p.add_layer(self)
from scene import *
import console
from MsgBox import *
testBestand = 'lister.py'
#testBestand = '/.file'
class listerLayer (Layer):
def __init__(self, text, font, font_size, parentScene):
@gdcs68
gdcs68 / printdirgui.py
Created February 15, 2014 06:48
3rd rev
#https://gist.github.com/anonymous/b690da18acc269d0eea5/download#
#https://gist.github.com/6d0ed2e05045fd969a00
from scene import *
import os
from os import path
import console
from itertools import chain
#import own modules
from MsgBox import *