mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
# Pandemonium source files
|
||
|
|
||
|
scene_obj = []
|
||
|
|
||
|
env.add_source_files(scene_obj, "*.cpp")
|
||
|
env.scene_sources += scene_obj
|
||
|
|