Rename Box2 -> UniversalBox
This commit is contained in:
parent
47f3037e23
commit
eecbceda11
|
@ -18,8 +18,8 @@ from boxes import *
|
||||||
from boxes.edges import Bolts
|
from boxes.edges import Bolts
|
||||||
from boxes.lids import _TopEdge, _ChestLid
|
from boxes.lids import _TopEdge, _ChestLid
|
||||||
|
|
||||||
class Box2(_TopEdge, _ChestLid):
|
class UniversalBox(_TopEdge, _ChestLid):
|
||||||
"""Box various options for different stypes and lids"""
|
"""Box with various options for different styles and lids"""
|
||||||
|
|
||||||
ui_group = "Box"
|
ui_group = "Box"
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ class Box2(_TopEdge, _ChestLid):
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
b = Box2()
|
b = UniversalBox()
|
||||||
b.parseArgs()
|
b.parseArgs()
|
||||||
b.render()
|
b.render()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue