view flax/UI.py @ 1413:cb1379b3555b

first try at moving-light effect Ignore-this: 5cbe6ac11058624908a5d65b3c4fa0e9
author drewp@bigasterisk.com
date Fri, 10 Jun 2016 03:27:22 +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)
"""