view flax/UI.py @ 1656:c5e4b0655bdc

KC font Ignore-this: ae1c5baf9dba834a006e2d169d12f7ab
author drewp@bigasterisk.com
date Sat, 10 Jun 2017 23:31: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)
"""