view flax/UI.py @ 1733:82c6e4f75221

extract viewstate Ignore-this: cf7375f279f158b732c9ada75e19a457
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 14 May 2018 02:48:20 +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)
"""