view flax/UI.py @ 1218:ab72450ef4b1

style consolidation Ignore-this: 815d0e10ea2df2d401187f5f835d616
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 08 Jun 2015 02:09:39 +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)
"""