view flax/UI.py @ 1174:a88d5c76d2ff

submaster don't abort subs that have dangling links in them Ignore-this: b6e1dd023112d07e0d8c89e9265f86c4
author drewp@bigasterisk.com
date Sun, 15 Jun 2014 06:19:33 +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)
"""