view flax/UI.py @ 802:5442f5d8979a

reformat Ignore-this: 366fc5043cae2df6da62c8704cf81e57
author drewp@bigasterisk.com
date Mon, 16 Jul 2012 22:32:51 +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)
"""