view flax/UI.py @ 1937:f29e26811206

pmfstats now update at 1hz. some ui improvements to stats lines. Ignore-this: be2b416f56b6f6604a0af86f5cd69fef
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 02 Jun 2019 21:19:57 +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)
"""