view flax/UI.py @ 1298:5a022e174c29

setpref .boring Ignore-this: 9245c60f335f1f6ae756937e46f01e04
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 30 May 2016 07:48:08 +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)
"""