view flax/UI.py @ 583:e77b8e795f64

cp Ignore-this: 70830034d314e35c96c3933ce28d4ac3
author David McClosky <dmcc@bigasterisk.com>
date Sun, 20 Jun 2010 00:17:14 +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)
"""