view flax/UI.py @ 1565:cd3e3f50096a

#novidref to quiet net requests from timeline Ignore-this: a2ce3fd04578d4a1f2c3e4614146860a
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 25 May 2017 04:09:51 +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)
"""