view flax/UI.py @ 1012:88110cd58caa

fix #! in bumppad Ignore-this: 8b79954405be8619669524fb875081a6
author drewp@bigasterisk.com
date Sat, 26 Apr 2014 17:48:55 +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)
"""