view flax/UI.py @ 601:8b2f851788a6

add readme Ignore-this: c36c45e592ef6b5bebd5ba02b7d34a4b
author David McClosky <dmcc@bigasterisk.com>
date Sun, 20 Jun 2010 05:06:01 +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)
"""