view flax/UI.py @ 771:c8d1a7bf5c6c

checkpoint Ignore-this: 19a0dbbc30521619826b027cddc2142f
author drewp@bigasterisk.com
date Sat, 16 Jun 2012 04:32:44 +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)
"""