mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
31 lines
449 B
Python
31 lines
449 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"BrightenAction",
|
|
"BrushAction",
|
|
"BucketAction",
|
|
"CutAction",
|
|
"DarkenAction",
|
|
"LineAction",
|
|
"MultiLineAction",
|
|
"PaintAction",
|
|
"PasteCutAction",
|
|
"PencilAction",
|
|
"RainbowAction",
|
|
"RectAction",
|
|
|
|
"PaintWindow",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|