view flax/UI.py @ 1429:01dd3928b635

KC can now fade in effects, which can be read from the graph Ignore-this: 8e45e99e677204465ed362d667e2d192
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 11 Jun 2016 06:49:25 +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)
"""