view flax/UI.py @ 1416:ab7b40d20af0

rewrite theaterConfig to a better data format Ignore-this: 54bc8ed67a85adb2e96334c2a917c83b
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 10 Jun 2016 12:09:59 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""