view flax/UI.py @ 1707:e19018a039f7

4 of 17 passing on new n3.js Ignore-this: 26d1489c3ee5d32646d67593ef1e4549
author drewp@bigasterisk.com
date Mon, 30 Apr 2018 07:25:12 +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)
"""