view flax/UI.py @ 684:83c239d3fd33

a note about where to use nt instead of n3, but i'm not doing it yet Ignore-this: 5fd66a91e57fb2266bdc2dbc11d0f1c7
author drewp@bigasterisk.com
date Tue, 21 Jun 2011 02:03:31 +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)
"""