view flax/UI.py @ 1983:b76300a0229a

megaflash strobe Ignore-this: bb96664ba93cd2885f0e99815a2d2e9
author drewp@bigasterisk.com
date Sat, 08 Jun 2019 19:13: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)
"""