mirror of
https://github.com/Relintai/world_generator.git
synced 2024-11-14 10:17:19 +01:00
20 lines
900 B
Plaintext
20 lines
900 B
Plaintext
Import('env')
|
|
|
|
env.add_source_files(env.modules_sources,"register_types.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"main/dungeon_room.cpp")
|
|
env.add_source_files(env.modules_sources,"main/dungeon_corridor.cpp")
|
|
env.add_source_files(env.modules_sources,"main/dungeon.cpp")
|
|
env.add_source_files(env.modules_sources,"main/biome.cpp")
|
|
env.add_source_files(env.modules_sources,"main/planet.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"data/dungeon_room_data.cpp")
|
|
env.add_source_files(env.modules_sources,"data/dungeon_corridor_data.cpp")
|
|
env.add_source_files(env.modules_sources,"data/dungeon_data.cpp")
|
|
env.add_source_files(env.modules_sources,"data/biome_data.cpp")
|
|
env.add_source_files(env.modules_sources,"data/planet_data.cpp")
|
|
env.add_source_files(env.modules_sources,"data/world_generator_prop_data.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"world_generator.cpp")
|
|
|