view flax/UI.py @ 978:ce159eea90b5

now 90 dimmers Ignore-this: 3dae55c592fd6ab38e4747088c025c59
author drewp@bigasterisk.com
date Sat, 15 Jun 2013 23:05:35 +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)
"""