mirror of
https://github.com/wassname/sloth.git
synced 2026-07-07 16:17:32 +08:00
d058b6057a
- use dicts for ITEMS and INSERTERS
23 lines
231 B
Python
23 lines
231 B
Python
LABELS = (
|
|
)
|
|
|
|
HOTKEYS = (
|
|
)
|
|
|
|
ITEMS = {
|
|
"rect": "items.RectItem",
|
|
"point": "items.PointItem",
|
|
}
|
|
|
|
INSERTERS = {
|
|
"rect": "items.RectItemInserter",
|
|
"point": "items.PointItemInserter",
|
|
}
|
|
|
|
LOADERS = (
|
|
)
|
|
|
|
PLUGINS = (
|
|
)
|
|
|