view flax/UI.py @ 846:89afd38433e8

docs Ignore-this: 84f3a0144967d1c29399862656da66a9
author drewp@bigasterisk.com
date Tue, 26 Mar 2013 08:24:06 +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)
"""