view flax/UI.py @ 1006:f7a0e26fbe7b

curtain Ignore-this: c57e39c811230842f98e776f2af33cb2
author drewp@bigasterisk.com
date Mon, 17 Jun 2013 02:06:56 +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)
"""