view flax/UI.py @ 872:5e097102e898

Patch tolerate missing add/del quads arguments Ignore-this: 3c38acb5b264666c47a30217c57b705b
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Jun 2013 08:22:30 +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)
"""