From 8181808b748ebf612f04f4cc73c2841949656206 Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 16 Jul 2024 21:27:34 +0200 Subject: [PATCH] Ran the header guard move script. --- core/locales.h | 6 ++++-- drivers/gles3/rasterizer_canvas_base_gles3.h | 6 ++++-- drivers/gles3/rasterizer_canvas_gles3.h | 6 ++++-- drivers/gles3/rasterizer_gles3.h | 6 ++++-- drivers/gles3/rasterizer_scene_gles3.h | 6 ++++-- drivers/gles3/rasterizer_storage_gles3.h | 6 ++++-- drivers/gles3/shader_cache_gles3.h | 6 ++++-- drivers/gles3/shader_compiler_gles3.h | 6 ++++-- drivers/gles3/shader_gles3.h | 6 ++++-- editor/editor_locale_dialog.h | 6 ++++-- editor/plugins/baked_lightmap_editor_plugin.h | 6 ++++-- editor/plugins/gi_probe_editor_plugin.h | 6 ++++-- editor/plugins/gpu_particles_2d_editor_plugin.h | 6 ++++-- editor_modules/denoise/denoise_wrapper.h | 6 ++++-- editor_modules/denoise/lightmap_denoiser.h | 6 ++++-- editor_modules/denoise/register_types.h | 6 ++++-- editor_modules/lightmapper_cpu/lightmapper_cpu.h | 6 ++++-- editor_modules/lightmapper_cpu/register_types.h | 6 ++++-- modules/xatlas_unwrap/register_types.h | 6 ++++-- platform/uwp/export_off/export.h | 6 ++++-- scene/2d/gpu_particles_2d.h | 6 ++++-- scene/3d/baked_lightmap.h | 6 ++++-- scene/3d/gi_probe.h | 6 ++++-- scene/3d/gpu_particles.h | 6 ++++-- scene/3d/lightmapper.h | 6 ++++-- scene/3d/lod.h | 6 ++++-- scene/3d/lod_manager.h | 6 ++++-- scene/3d/voxel_light_baker.h | 6 ++++-- 28 files changed, 112 insertions(+), 56 deletions(-) diff --git a/core/locales.h b/core/locales.h index c6c2a6c54..24e536d6b 100644 --- a/core/locales.h +++ b/core/locales.h @@ -1,3 +1,5 @@ +#ifndef LOCALES_H +#define LOCALES_H /*************************************************************************/ /* locales.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LOCALES_H -#define LOCALES_H + + // Windows has some weird locale identifiers which do not honor the ISO 639-1 // standardized nomenclature. Whenever those don't conflict with existing ISO diff --git a/drivers/gles3/rasterizer_canvas_base_gles3.h b/drivers/gles3/rasterizer_canvas_base_gles3.h index b8dd03717..969476b2f 100644 --- a/drivers/gles3/rasterizer_canvas_base_gles3.h +++ b/drivers/gles3/rasterizer_canvas_base_gles3.h @@ -1,3 +1,5 @@ +#ifndef RASTERIZER_CANVAS_BASE_GLES3_H +#define RASTERIZER_CANVAS_BASE_GLES3_H /*************************************************************************/ /* rasterizer_canvas_base_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef RASTERIZER_CANVAS_BASE_GLES3_H -#define RASTERIZER_CANVAS_BASE_GLES3_H + + #include "rasterizer_storage_gles3.h" #include "servers/rendering/rasterizer.h" diff --git a/drivers/gles3/rasterizer_canvas_gles3.h b/drivers/gles3/rasterizer_canvas_gles3.h index 9155cebe6..8fdda305d 100644 --- a/drivers/gles3/rasterizer_canvas_gles3.h +++ b/drivers/gles3/rasterizer_canvas_gles3.h @@ -1,3 +1,5 @@ +#ifndef RASTERIZER_CANVAS_GLES3_H +#define RASTERIZER_CANVAS_GLES3_H /*************************************************************************/ /* rasterizer_canvas_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef RASTERIZER_CANVAS_GLES3_H -#define RASTERIZER_CANVAS_GLES3_H + + #include "drivers/gles_common/rasterizer_canvas_batcher.h" #include "rasterizer_canvas_base_gles3.h" diff --git a/drivers/gles3/rasterizer_gles3.h b/drivers/gles3/rasterizer_gles3.h index 25c9840fa..ac3315587 100644 --- a/drivers/gles3/rasterizer_gles3.h +++ b/drivers/gles3/rasterizer_gles3.h @@ -1,3 +1,5 @@ +#ifndef RASTERIZER_GLES3_H +#define RASTERIZER_GLES3_H /*************************************************************************/ /* rasterizer_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef RASTERIZER_GLES3_H -#define RASTERIZER_GLES3_H + + #include "rasterizer_canvas_gles3.h" #include "rasterizer_scene_gles3.h" diff --git a/drivers/gles3/rasterizer_scene_gles3.h b/drivers/gles3/rasterizer_scene_gles3.h index 005a5f33c..98caaf2f8 100644 --- a/drivers/gles3/rasterizer_scene_gles3.h +++ b/drivers/gles3/rasterizer_scene_gles3.h @@ -1,3 +1,5 @@ +#ifndef RASTERIZER_SCENE_GLES3_H +#define RASTERIZER_SCENE_GLES3_H /*************************************************************************/ /* rasterizer_scene_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef RASTERIZER_SCENE_GLES3_H -#define RASTERIZER_SCENE_GLES3_H + + /* Must come before shaders or the Windows build fails... */ #include "rasterizer_storage_gles3.h" diff --git a/drivers/gles3/rasterizer_storage_gles3.h b/drivers/gles3/rasterizer_storage_gles3.h index ff696fb02..cdd043937 100644 --- a/drivers/gles3/rasterizer_storage_gles3.h +++ b/drivers/gles3/rasterizer_storage_gles3.h @@ -1,3 +1,5 @@ +#ifndef RASTERIZER_STORAGE_GLES3_H +#define RASTERIZER_STORAGE_GLES3_H /*************************************************************************/ /* rasterizer_storage_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef RASTERIZER_STORAGE_GLES3_H -#define RASTERIZER_STORAGE_GLES3_H + + #include "core/containers/bitfield_dynamic.h" #include "core/containers/self_list.h" diff --git a/drivers/gles3/shader_cache_gles3.h b/drivers/gles3/shader_cache_gles3.h index 412100cab..d671a1150 100644 --- a/drivers/gles3/shader_cache_gles3.h +++ b/drivers/gles3/shader_cache_gles3.h @@ -1,3 +1,5 @@ +#ifndef SHADER_CACHE_GLES3_H +#define SHADER_CACHE_GLES3_H /*************************************************************************/ /* shader_cache_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef SHADER_CACHE_GLES3_H -#define SHADER_CACHE_GLES3_H + + #include "core/containers/local_vector.h" #include "core/object/reference.h" diff --git a/drivers/gles3/shader_compiler_gles3.h b/drivers/gles3/shader_compiler_gles3.h index bdbf405fe..ed1b60482 100644 --- a/drivers/gles3/shader_compiler_gles3.h +++ b/drivers/gles3/shader_compiler_gles3.h @@ -1,3 +1,5 @@ +#ifndef SHADER_COMPILER_GLES3_H +#define SHADER_COMPILER_GLES3_H /*************************************************************************/ /* shader_compiler_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef SHADER_COMPILER_GLES3_H -#define SHADER_COMPILER_GLES3_H + + #include "core/containers/pair.h" #include "servers/rendering/shader_language.h" diff --git a/drivers/gles3/shader_gles3.h b/drivers/gles3/shader_gles3.h index 077998cf8..12347e1f2 100644 --- a/drivers/gles3/shader_gles3.h +++ b/drivers/gles3/shader_gles3.h @@ -1,3 +1,5 @@ +#ifndef SHADER_GLES3_H +#define SHADER_GLES3_H /*************************************************************************/ /* shader_gles3.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef SHADER_GLES3_H -#define SHADER_GLES3_H + + #include "core/containers/hash_map.h" #include "core/containers/local_vector.h" diff --git a/editor/editor_locale_dialog.h b/editor/editor_locale_dialog.h index ef6292f6e..3eec48cba 100644 --- a/editor/editor_locale_dialog.h +++ b/editor/editor_locale_dialog.h @@ -1,3 +1,5 @@ +#ifndef EDITOR_LOCALE_DIALOG_H +#define EDITOR_LOCALE_DIALOG_H /*************************************************************************/ /* editor_locale_dialog.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef EDITOR_LOCALE_DIALOG_H -#define EDITOR_LOCALE_DIALOG_H + + #include "core/string/translation.h" #include "scene/gui/dialogs.h" diff --git a/editor/plugins/baked_lightmap_editor_plugin.h b/editor/plugins/baked_lightmap_editor_plugin.h index 137f030ed..d545f8aa1 100644 --- a/editor/plugins/baked_lightmap_editor_plugin.h +++ b/editor/plugins/baked_lightmap_editor_plugin.h @@ -1,3 +1,5 @@ +#ifndef BAKED_LIGHTMAP_EDITOR_PLUGIN_H +#define BAKED_LIGHTMAP_EDITOR_PLUGIN_H /*************************************************************************/ /* baked_lightmap_editor_plugin.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef BAKED_LIGHTMAP_EDITOR_PLUGIN_H -#define BAKED_LIGHTMAP_EDITOR_PLUGIN_H + + #include "editor/editor_node.h" #include "editor/editor_plugin.h" diff --git a/editor/plugins/gi_probe_editor_plugin.h b/editor/plugins/gi_probe_editor_plugin.h index c34cb3367..1f7f525b6 100644 --- a/editor/plugins/gi_probe_editor_plugin.h +++ b/editor/plugins/gi_probe_editor_plugin.h @@ -1,3 +1,5 @@ +#ifndef GI_PROBE_EDITOR_PLUGIN_H +#define GI_PROBE_EDITOR_PLUGIN_H /*************************************************************************/ /* gi_probe_editor_plugin.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef GI_PROBE_EDITOR_PLUGIN_H -#define GI_PROBE_EDITOR_PLUGIN_H + + #include "editor/editor_plugin.h" diff --git a/editor/plugins/gpu_particles_2d_editor_plugin.h b/editor/plugins/gpu_particles_2d_editor_plugin.h index ad3fd2294..795a2f19b 100644 --- a/editor/plugins/gpu_particles_2d_editor_plugin.h +++ b/editor/plugins/gpu_particles_2d_editor_plugin.h @@ -1,3 +1,5 @@ +#ifndef PARTICLES_2D_EDITOR_PLUGIN_H +#define PARTICLES_2D_EDITOR_PLUGIN_H /*************************************************************************/ /* gpu_particles_2d_editor_plugin.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef PARTICLES_2D_EDITOR_PLUGIN_H -#define PARTICLES_2D_EDITOR_PLUGIN_H + + #include "editor/editor_node.h" #include "editor/editor_plugin.h" diff --git a/editor_modules/denoise/denoise_wrapper.h b/editor_modules/denoise/denoise_wrapper.h index 1ce9fc0cf..ddb5d99de 100644 --- a/editor_modules/denoise/denoise_wrapper.h +++ b/editor_modules/denoise/denoise_wrapper.h @@ -1,3 +1,5 @@ +#ifndef DENOISE_WRAPPER_H +#define DENOISE_WRAPPER_H /*************************************************************************/ /* denoise_wrapper.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef DENOISE_WRAPPER_H -#define DENOISE_WRAPPER_H + + void *oidn_denoiser_init(); bool oidn_denoise(void *device, float *p_floats, int p_width, int p_height); diff --git a/editor_modules/denoise/lightmap_denoiser.h b/editor_modules/denoise/lightmap_denoiser.h index 5bd342f1b..658fbdcd4 100644 --- a/editor_modules/denoise/lightmap_denoiser.h +++ b/editor_modules/denoise/lightmap_denoiser.h @@ -1,3 +1,5 @@ +#ifndef LIGHTMAP_DENOISER_H +#define LIGHTMAP_DENOISER_H /*************************************************************************/ /* lightmap_denoiser.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LIGHTMAP_DENOISER_H -#define LIGHTMAP_DENOISER_H + + #include "core/object/class_db.h" #include "scene/3d/lightmapper.h" diff --git a/editor_modules/denoise/register_types.h b/editor_modules/denoise/register_types.h index e49eb8a9e..a65b454f3 100644 --- a/editor_modules/denoise/register_types.h +++ b/editor_modules/denoise/register_types.h @@ -1,3 +1,5 @@ +#ifndef DENOISE_REGISTER_TYPES_H +#define DENOISE_REGISTER_TYPES_H /*************************************************************************/ /* register_types.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef DENOISE_REGISTER_TYPES_H -#define DENOISE_REGISTER_TYPES_H + + #include "modules/register_module_types.h" diff --git a/editor_modules/lightmapper_cpu/lightmapper_cpu.h b/editor_modules/lightmapper_cpu/lightmapper_cpu.h index 2a664e63d..1028eed42 100644 --- a/editor_modules/lightmapper_cpu/lightmapper_cpu.h +++ b/editor_modules/lightmapper_cpu/lightmapper_cpu.h @@ -1,3 +1,5 @@ +#ifndef LIGHTMAPPER_CPU_H +#define LIGHTMAPPER_CPU_H /*************************************************************************/ /* lightmapper_cpu.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LIGHTMAPPER_CPU_H -#define LIGHTMAPPER_CPU_H + + #include "core/containers/local_vector.h" #include "scene/3d/lightmapper.h" diff --git a/editor_modules/lightmapper_cpu/register_types.h b/editor_modules/lightmapper_cpu/register_types.h index 277b4f582..832e19ac9 100644 --- a/editor_modules/lightmapper_cpu/register_types.h +++ b/editor_modules/lightmapper_cpu/register_types.h @@ -1,3 +1,5 @@ +#ifndef LIGHTMAPPER_CPU_REGISTER_TYPES_H +#define LIGHTMAPPER_CPU_REGISTER_TYPES_H /*************************************************************************/ /* register_types.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LIGHTMAPPER_CPU_REGISTER_TYPES_H -#define LIGHTMAPPER_CPU_REGISTER_TYPES_H + + #include "modules/register_module_types.h" diff --git a/modules/xatlas_unwrap/register_types.h b/modules/xatlas_unwrap/register_types.h index 6d098d559..0a0c0e62f 100644 --- a/modules/xatlas_unwrap/register_types.h +++ b/modules/xatlas_unwrap/register_types.h @@ -1,3 +1,5 @@ +#ifndef XATLAS_UNWRAP_REGISTER_TYPES_H +#define XATLAS_UNWRAP_REGISTER_TYPES_H /*************************************************************************/ /* register_types.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef XATLAS_UNWRAP_REGISTER_TYPES_H -#define XATLAS_UNWRAP_REGISTER_TYPES_H + + #include "modules/register_module_types.h" diff --git a/platform/uwp/export_off/export.h b/platform/uwp/export_off/export.h index ff0ee42b7..c71701e10 100644 --- a/platform/uwp/export_off/export.h +++ b/platform/uwp/export_off/export.h @@ -1,3 +1,5 @@ +#ifndef UWP_EXPORT_H +#define UWP_EXPORT_H /*************************************************************************/ /* export.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef UWP_EXPORT_H -#define UWP_EXPORT_H + + void register_uwp_exporter(); diff --git a/scene/2d/gpu_particles_2d.h b/scene/2d/gpu_particles_2d.h index e3730ab9f..8cae72e90 100644 --- a/scene/2d/gpu_particles_2d.h +++ b/scene/2d/gpu_particles_2d.h @@ -1,3 +1,5 @@ +#ifndef PARTICLES_2D_H +#define PARTICLES_2D_H /*************************************************************************/ /* gpu_particles_2d.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef PARTICLES_2D_H -#define PARTICLES_2D_H + + #include "core/containers/rid.h" #include "scene/main/node_2d.h" diff --git a/scene/3d/baked_lightmap.h b/scene/3d/baked_lightmap.h index 6f7e38236..80a31b675 100644 --- a/scene/3d/baked_lightmap.h +++ b/scene/3d/baked_lightmap.h @@ -1,3 +1,5 @@ +#ifndef BAKED_LIGHTMAP_H +#define BAKED_LIGHTMAP_H /*************************************************************************/ /* baked_lightmap.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef BAKED_LIGHTMAP_H -#define BAKED_LIGHTMAP_H + + #include "core/containers/local_vector.h" #include "multimesh_instance.h" diff --git a/scene/3d/gi_probe.h b/scene/3d/gi_probe.h index 6c025f8d5..e363eb089 100644 --- a/scene/3d/gi_probe.h +++ b/scene/3d/gi_probe.h @@ -1,3 +1,5 @@ +#ifndef GI_PROBE_H +#define GI_PROBE_H /*************************************************************************/ /* gi_probe.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef GI_PROBE_H -#define GI_PROBE_H + + #include "multimesh_instance.h" #include "scene/3d/visual_instance.h" diff --git a/scene/3d/gpu_particles.h b/scene/3d/gpu_particles.h index 1104b54ca..f20163e27 100644 --- a/scene/3d/gpu_particles.h +++ b/scene/3d/gpu_particles.h @@ -1,3 +1,5 @@ +#ifndef PARTICLES_H +#define PARTICLES_H /*************************************************************************/ /* gpu_particles.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef PARTICLES_H -#define PARTICLES_H + + #include "core/containers/rid.h" #include "scene/3d/visual_instance.h" diff --git a/scene/3d/lightmapper.h b/scene/3d/lightmapper.h index f6e51c8db..c171bd7e7 100644 --- a/scene/3d/lightmapper.h +++ b/scene/3d/lightmapper.h @@ -1,3 +1,5 @@ +#ifndef LIGHTMAPPER_H +#define LIGHTMAPPER_H /*************************************************************************/ /* lightmapper.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LIGHTMAPPER_H -#define LIGHTMAPPER_H + + #include "scene/resources/mesh/mesh.h" diff --git a/scene/3d/lod.h b/scene/3d/lod.h index f676aa83b..957ae4124 100644 --- a/scene/3d/lod.h +++ b/scene/3d/lod.h @@ -1,3 +1,5 @@ +#ifndef LOD_H +#define LOD_H /*************************************************************************/ /* lod.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LOD_H -#define LOD_H + + #include "scene/main/spatial.h" diff --git a/scene/3d/lod_manager.h b/scene/3d/lod_manager.h index bc9500de5..713859ff8 100644 --- a/scene/3d/lod_manager.h +++ b/scene/3d/lod_manager.h @@ -1,3 +1,5 @@ +#ifndef LOD_MANAGER_H +#define LOD_MANAGER_H /*************************************************************************/ /* lod_manager.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef LOD_MANAGER_H -#define LOD_MANAGER_H + + #include "core/containers/local_vector.h" #include "core/os/mutex.h" diff --git a/scene/3d/voxel_light_baker.h b/scene/3d/voxel_light_baker.h index d7255dd06..36fb0e0b3 100644 --- a/scene/3d/voxel_light_baker.h +++ b/scene/3d/voxel_light_baker.h @@ -1,3 +1,5 @@ +#ifndef VOXEL_LIGHT_BAKER_H +#define VOXEL_LIGHT_BAKER_H /*************************************************************************/ /* voxel_light_baker.h */ /*************************************************************************/ @@ -29,8 +31,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef VOXEL_LIGHT_BAKER_H -#define VOXEL_LIGHT_BAKER_H + + #include "scene/3d/mesh_instance.h" #include "scene/resources/mesh/multimesh.h"