From 5b99d7cfd8b775e17d2637b6c390bdfb6fd0c9fa Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 15 Apr 2021 18:30:20 +0200 Subject: [PATCH] Update copyright headers. --- areas/world_area.cpp | 2 +- areas/world_area.h | 2 +- data/voxel_light.cpp | 2 +- data/voxel_light.h | 2 +- level_generator/voxelman_level_generator.cpp | 2 +- level_generator/voxelman_level_generator.h | 2 +- level_generator/voxelman_level_generator_flat.cpp | 2 +- level_generator/voxelman_level_generator_flat.h | 2 +- library/voxel_surface.cpp | 2 +- library/voxel_surface.h | 2 +- library/voxel_surface_merger.cpp | 2 +- library/voxel_surface_merger.h | 2 +- library/voxel_surface_simple.cpp | 2 +- library/voxel_surface_simple.h | 2 +- library/voxelman_library.cpp | 2 +- library/voxelman_library.h | 2 +- library/voxelman_library_merger.cpp | 2 +- library/voxelman_library_merger.h | 2 +- library/voxelman_library_simple.cpp | 2 +- library/voxelman_library_simple.h | 2 +- meshers/blocky/voxel_mesher_blocky.cpp | 2 +- meshers/blocky/voxel_mesher_blocky.h | 2 +- meshers/blocky/voxel_mesher_liquid_blocky.cpp | 2 +- meshers/blocky/voxel_mesher_liquid_blocky.h | 2 +- meshers/cubic/voxel_cube_points.cpp | 2 +- meshers/cubic/voxel_cube_points.h | 2 +- meshers/cubic/voxel_mesher_cubic.cpp | 2 +- meshers/cubic/voxel_mesher_cubic.h | 2 +- meshers/default/voxel_mesher_default.cpp | 2 +- meshers/default/voxel_mesher_default.h | 2 +- meshers/marching_cubes/marching_cubes_cell_data.cpp | 2 +- meshers/marching_cubes/marching_cubes_cell_data.h | 2 +- meshers/marching_cubes/voxel_mesher_marching_cubes.cpp | 2 +- meshers/marching_cubes/voxel_mesher_marching_cubes.h | 2 +- meshers/voxel_mesher.cpp | 2 +- meshers/voxel_mesher.h | 2 +- register_types.cpp | 2 +- world/block_voxel_structure.cpp | 2 +- world/block_voxel_structure.h | 2 +- world/blocky/voxel_chunk_blocky.cpp | 2 +- world/blocky/voxel_chunk_blocky.h | 2 +- world/blocky/voxel_world_blocky.cpp | 2 +- world/blocky/voxel_world_blocky.h | 2 +- world/cubic/voxel_chunk_cubic.cpp | 2 +- world/cubic/voxel_chunk_cubic.h | 2 +- world/cubic/voxel_world_cubic.cpp | 2 +- world/cubic/voxel_world_cubic.h | 2 +- world/default/voxel_chunk_default.cpp | 2 +- world/default/voxel_chunk_default.h | 2 +- world/default/voxel_world_default.cpp | 2 +- world/default/voxel_world_default.h | 2 +- world/environment_data.cpp | 2 +- world/environment_data.h | 2 +- world/jobs/voxel_job.cpp | 2 +- world/jobs/voxel_job.h | 2 +- world/jobs/voxel_light_job.cpp | 2 +- world/jobs/voxel_light_job.h | 2 +- world/jobs/voxel_prop_job.cpp | 2 +- world/jobs/voxel_prop_job.h | 2 +- world/jobs/voxel_terrarin_job.cpp | 2 +- world/jobs/voxel_terrarin_job.h | 2 +- world/marching_cubes/voxel_chunk_marching_cubes.cpp | 2 +- world/marching_cubes/voxel_chunk_marching_cubes.h | 2 +- world/marching_cubes/voxel_world_marching_cubes.cpp | 2 +- world/marching_cubes/voxel_world_marching_cubes.h | 2 +- world/voxel_chunk.cpp | 2 +- world/voxel_chunk.h | 2 +- world/voxel_structure.cpp | 2 +- world/voxel_structure.h | 2 +- world/voxel_world.cpp | 2 +- world/voxel_world.h | 2 +- 71 files changed, 71 insertions(+), 71 deletions(-) diff --git a/areas/world_area.cpp b/areas/world_area.cpp index 22abcd1..8e88e95 100644 --- a/areas/world_area.cpp +++ b/areas/world_area.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/areas/world_area.h b/areas/world_area.h index 7078c69..829d90e 100644 --- a/areas/world_area.h +++ b/areas/world_area.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/data/voxel_light.cpp b/data/voxel_light.cpp index e0df386..39cd5b0 100644 --- a/data/voxel_light.cpp +++ b/data/voxel_light.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/data/voxel_light.h b/data/voxel_light.h index 9f435cc..fba4323 100644 --- a/data/voxel_light.h +++ b/data/voxel_light.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/level_generator/voxelman_level_generator.cpp b/level_generator/voxelman_level_generator.cpp index c676685..4386076 100644 --- a/level_generator/voxelman_level_generator.cpp +++ b/level_generator/voxelman_level_generator.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/level_generator/voxelman_level_generator.h b/level_generator/voxelman_level_generator.h index 445c6e1..59f1013 100644 --- a/level_generator/voxelman_level_generator.h +++ b/level_generator/voxelman_level_generator.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/level_generator/voxelman_level_generator_flat.cpp b/level_generator/voxelman_level_generator_flat.cpp index d473220..f98dc35 100644 --- a/level_generator/voxelman_level_generator_flat.cpp +++ b/level_generator/voxelman_level_generator_flat.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/level_generator/voxelman_level_generator_flat.h b/level_generator/voxelman_level_generator_flat.h index 054c0ab..b257665 100644 --- a/level_generator/voxelman_level_generator_flat.h +++ b/level_generator/voxelman_level_generator_flat.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface.cpp b/library/voxel_surface.cpp index 520f528..172af1c 100644 --- a/library/voxel_surface.cpp +++ b/library/voxel_surface.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface.h b/library/voxel_surface.h index fdeb635..fb43933 100644 --- a/library/voxel_surface.h +++ b/library/voxel_surface.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface_merger.cpp b/library/voxel_surface_merger.cpp index 048c786..e604e6a 100644 --- a/library/voxel_surface_merger.cpp +++ b/library/voxel_surface_merger.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface_merger.h b/library/voxel_surface_merger.h index 5f29826..d786dc4 100644 --- a/library/voxel_surface_merger.h +++ b/library/voxel_surface_merger.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface_simple.cpp b/library/voxel_surface_simple.cpp index aeb9a5a..7537050 100644 --- a/library/voxel_surface_simple.cpp +++ b/library/voxel_surface_simple.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxel_surface_simple.h b/library/voxel_surface_simple.h index fee2fbd..0659923 100644 --- a/library/voxel_surface_simple.h +++ b/library/voxel_surface_simple.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library.cpp b/library/voxelman_library.cpp index 7d6bf19..f2a560b 100644 --- a/library/voxelman_library.cpp +++ b/library/voxelman_library.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library.h b/library/voxelman_library.h index dbdfde6..2a9fe18 100644 --- a/library/voxelman_library.h +++ b/library/voxelman_library.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library_merger.cpp b/library/voxelman_library_merger.cpp index 7cfa18e..a9bf296 100644 --- a/library/voxelman_library_merger.cpp +++ b/library/voxelman_library_merger.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library_merger.h b/library/voxelman_library_merger.h index 2f9d5eb..24e8f77 100644 --- a/library/voxelman_library_merger.h +++ b/library/voxelman_library_merger.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library_simple.cpp b/library/voxelman_library_simple.cpp index 7b9a32c..69d0247 100644 --- a/library/voxelman_library_simple.cpp +++ b/library/voxelman_library_simple.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/library/voxelman_library_simple.h b/library/voxelman_library_simple.h index 87ba64d..0847d4c 100644 --- a/library/voxelman_library_simple.h +++ b/library/voxelman_library_simple.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/blocky/voxel_mesher_blocky.cpp b/meshers/blocky/voxel_mesher_blocky.cpp index 4ca2a60..3f1c8e3 100644 --- a/meshers/blocky/voxel_mesher_blocky.cpp +++ b/meshers/blocky/voxel_mesher_blocky.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/blocky/voxel_mesher_blocky.h b/meshers/blocky/voxel_mesher_blocky.h index 0cf7965..47cf25b 100644 --- a/meshers/blocky/voxel_mesher_blocky.h +++ b/meshers/blocky/voxel_mesher_blocky.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/blocky/voxel_mesher_liquid_blocky.cpp b/meshers/blocky/voxel_mesher_liquid_blocky.cpp index af5558d..eb4c203 100644 --- a/meshers/blocky/voxel_mesher_liquid_blocky.cpp +++ b/meshers/blocky/voxel_mesher_liquid_blocky.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/blocky/voxel_mesher_liquid_blocky.h b/meshers/blocky/voxel_mesher_liquid_blocky.h index 57870d3..f533889 100644 --- a/meshers/blocky/voxel_mesher_liquid_blocky.h +++ b/meshers/blocky/voxel_mesher_liquid_blocky.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/cubic/voxel_cube_points.cpp b/meshers/cubic/voxel_cube_points.cpp index e49a0ed..7352979 100644 --- a/meshers/cubic/voxel_cube_points.cpp +++ b/meshers/cubic/voxel_cube_points.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/cubic/voxel_cube_points.h b/meshers/cubic/voxel_cube_points.h index 90f2bed..be840e3 100644 --- a/meshers/cubic/voxel_cube_points.h +++ b/meshers/cubic/voxel_cube_points.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/cubic/voxel_mesher_cubic.cpp b/meshers/cubic/voxel_mesher_cubic.cpp index 09fe058..b388967 100644 --- a/meshers/cubic/voxel_mesher_cubic.cpp +++ b/meshers/cubic/voxel_mesher_cubic.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/cubic/voxel_mesher_cubic.h b/meshers/cubic/voxel_mesher_cubic.h index ec69d1b..ddce83b 100644 --- a/meshers/cubic/voxel_mesher_cubic.h +++ b/meshers/cubic/voxel_mesher_cubic.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/default/voxel_mesher_default.cpp b/meshers/default/voxel_mesher_default.cpp index b91a272..2b22b8e 100644 --- a/meshers/default/voxel_mesher_default.cpp +++ b/meshers/default/voxel_mesher_default.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/default/voxel_mesher_default.h b/meshers/default/voxel_mesher_default.h index cbe0d1c..719b78e 100644 --- a/meshers/default/voxel_mesher_default.h +++ b/meshers/default/voxel_mesher_default.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/marching_cubes/marching_cubes_cell_data.cpp b/meshers/marching_cubes/marching_cubes_cell_data.cpp index 4c64943..b66c729 100644 --- a/meshers/marching_cubes/marching_cubes_cell_data.cpp +++ b/meshers/marching_cubes/marching_cubes_cell_data.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/marching_cubes/marching_cubes_cell_data.h b/meshers/marching_cubes/marching_cubes_cell_data.h index 653eb4e..39d201c 100644 --- a/meshers/marching_cubes/marching_cubes_cell_data.h +++ b/meshers/marching_cubes/marching_cubes_cell_data.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/marching_cubes/voxel_mesher_marching_cubes.cpp b/meshers/marching_cubes/voxel_mesher_marching_cubes.cpp index 2945c28..e0a7388 100644 --- a/meshers/marching_cubes/voxel_mesher_marching_cubes.cpp +++ b/meshers/marching_cubes/voxel_mesher_marching_cubes.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/marching_cubes/voxel_mesher_marching_cubes.h b/meshers/marching_cubes/voxel_mesher_marching_cubes.h index 1a7389e..09c05ca 100644 --- a/meshers/marching_cubes/voxel_mesher_marching_cubes.h +++ b/meshers/marching_cubes/voxel_mesher_marching_cubes.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/voxel_mesher.cpp b/meshers/voxel_mesher.cpp index c394bad..05241b3 100644 --- a/meshers/voxel_mesher.cpp +++ b/meshers/voxel_mesher.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/meshers/voxel_mesher.h b/meshers/voxel_mesher.h index 4daa2b6..8df00e6 100644 --- a/meshers/voxel_mesher.h +++ b/meshers/voxel_mesher.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/register_types.cpp b/register_types.cpp index df0168c..e28642f 100644 --- a/register_types.cpp +++ b/register_types.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/block_voxel_structure.cpp b/world/block_voxel_structure.cpp index ab15dd6..216ea73 100644 --- a/world/block_voxel_structure.cpp +++ b/world/block_voxel_structure.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/block_voxel_structure.h b/world/block_voxel_structure.h index 0851804..05316ec 100644 --- a/world/block_voxel_structure.h +++ b/world/block_voxel_structure.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/blocky/voxel_chunk_blocky.cpp b/world/blocky/voxel_chunk_blocky.cpp index 17826f1..21ae8e1 100644 --- a/world/blocky/voxel_chunk_blocky.cpp +++ b/world/blocky/voxel_chunk_blocky.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/blocky/voxel_chunk_blocky.h b/world/blocky/voxel_chunk_blocky.h index 5d8a105..9590f81 100644 --- a/world/blocky/voxel_chunk_blocky.h +++ b/world/blocky/voxel_chunk_blocky.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/blocky/voxel_world_blocky.cpp b/world/blocky/voxel_world_blocky.cpp index 66112a3..da24207 100644 --- a/world/blocky/voxel_world_blocky.cpp +++ b/world/blocky/voxel_world_blocky.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/blocky/voxel_world_blocky.h b/world/blocky/voxel_world_blocky.h index 2201fad..de1e6aa 100644 --- a/world/blocky/voxel_world_blocky.h +++ b/world/blocky/voxel_world_blocky.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/cubic/voxel_chunk_cubic.cpp b/world/cubic/voxel_chunk_cubic.cpp index 0ff9272..a5bee8c 100644 --- a/world/cubic/voxel_chunk_cubic.cpp +++ b/world/cubic/voxel_chunk_cubic.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/cubic/voxel_chunk_cubic.h b/world/cubic/voxel_chunk_cubic.h index ea94f3d..bf4b85a 100644 --- a/world/cubic/voxel_chunk_cubic.h +++ b/world/cubic/voxel_chunk_cubic.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/cubic/voxel_world_cubic.cpp b/world/cubic/voxel_world_cubic.cpp index 6f67ac3..bec1fc0 100644 --- a/world/cubic/voxel_world_cubic.cpp +++ b/world/cubic/voxel_world_cubic.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/cubic/voxel_world_cubic.h b/world/cubic/voxel_world_cubic.h index be5b09a..690f4fc 100644 --- a/world/cubic/voxel_world_cubic.h +++ b/world/cubic/voxel_world_cubic.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/default/voxel_chunk_default.cpp b/world/default/voxel_chunk_default.cpp index 369be46..857ce78 100644 --- a/world/default/voxel_chunk_default.cpp +++ b/world/default/voxel_chunk_default.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/default/voxel_chunk_default.h b/world/default/voxel_chunk_default.h index d8c8e6f..690e19a 100644 --- a/world/default/voxel_chunk_default.h +++ b/world/default/voxel_chunk_default.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/default/voxel_world_default.cpp b/world/default/voxel_world_default.cpp index 447e889..e754cee 100644 --- a/world/default/voxel_world_default.cpp +++ b/world/default/voxel_world_default.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/default/voxel_world_default.h b/world/default/voxel_world_default.h index 5b67736..fa45bf3 100644 --- a/world/default/voxel_world_default.h +++ b/world/default/voxel_world_default.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/environment_data.cpp b/world/environment_data.cpp index 5bdbc94..43a81e3 100644 --- a/world/environment_data.cpp +++ b/world/environment_data.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/environment_data.h b/world/environment_data.h index 37d39b7..2d18f27 100644 --- a/world/environment_data.h +++ b/world/environment_data.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_job.cpp b/world/jobs/voxel_job.cpp index 73f3983..684bb0e 100644 --- a/world/jobs/voxel_job.cpp +++ b/world/jobs/voxel_job.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_job.h b/world/jobs/voxel_job.h index c459dcd..2f00691 100644 --- a/world/jobs/voxel_job.h +++ b/world/jobs/voxel_job.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_light_job.cpp b/world/jobs/voxel_light_job.cpp index a0a7f01..35298f6 100644 --- a/world/jobs/voxel_light_job.cpp +++ b/world/jobs/voxel_light_job.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_light_job.h b/world/jobs/voxel_light_job.h index 7b3836b..16e4939 100644 --- a/world/jobs/voxel_light_job.h +++ b/world/jobs/voxel_light_job.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_prop_job.cpp b/world/jobs/voxel_prop_job.cpp index 1cefcc7..13ae478 100644 --- a/world/jobs/voxel_prop_job.cpp +++ b/world/jobs/voxel_prop_job.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_prop_job.h b/world/jobs/voxel_prop_job.h index 9fc68eb..9d57d1b 100644 --- a/world/jobs/voxel_prop_job.h +++ b/world/jobs/voxel_prop_job.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_terrarin_job.cpp b/world/jobs/voxel_terrarin_job.cpp index 3b760dd..3a9fa71 100644 --- a/world/jobs/voxel_terrarin_job.cpp +++ b/world/jobs/voxel_terrarin_job.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/jobs/voxel_terrarin_job.h b/world/jobs/voxel_terrarin_job.h index a8d7b8a..1d0311f 100644 --- a/world/jobs/voxel_terrarin_job.h +++ b/world/jobs/voxel_terrarin_job.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/marching_cubes/voxel_chunk_marching_cubes.cpp b/world/marching_cubes/voxel_chunk_marching_cubes.cpp index e418836..76031be 100644 --- a/world/marching_cubes/voxel_chunk_marching_cubes.cpp +++ b/world/marching_cubes/voxel_chunk_marching_cubes.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/marching_cubes/voxel_chunk_marching_cubes.h b/world/marching_cubes/voxel_chunk_marching_cubes.h index 06f32e2..febd742 100644 --- a/world/marching_cubes/voxel_chunk_marching_cubes.h +++ b/world/marching_cubes/voxel_chunk_marching_cubes.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/marching_cubes/voxel_world_marching_cubes.cpp b/world/marching_cubes/voxel_world_marching_cubes.cpp index 8c80c1b..2303e2e 100644 --- a/world/marching_cubes/voxel_world_marching_cubes.cpp +++ b/world/marching_cubes/voxel_world_marching_cubes.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/marching_cubes/voxel_world_marching_cubes.h b/world/marching_cubes/voxel_world_marching_cubes.h index dbabb2f..a198072 100644 --- a/world/marching_cubes/voxel_world_marching_cubes.h +++ b/world/marching_cubes/voxel_world_marching_cubes.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_chunk.cpp b/world/voxel_chunk.cpp index f72b6b0..ffd47e8 100644 --- a/world/voxel_chunk.cpp +++ b/world/voxel_chunk.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_chunk.h b/world/voxel_chunk.h index 06f76c1..024a31b 100644 --- a/world/voxel_chunk.h +++ b/world/voxel_chunk.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_structure.cpp b/world/voxel_structure.cpp index 65682d8..713c960 100644 --- a/world/voxel_structure.cpp +++ b/world/voxel_structure.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_structure.h b/world/voxel_structure.h index 67164af..446763d 100644 --- a/world/voxel_structure.h +++ b/world/voxel_structure.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_world.cpp b/world/voxel_world.cpp index 0a40906..07c0d9c 100644 --- a/world/voxel_world.cpp +++ b/world/voxel_world.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/world/voxel_world.h b/world/voxel_world.h index ac9a594..eeb698e 100644 --- a/world/voxel_world.h +++ b/world/voxel_world.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019-2020 Péter Magyar +Copyright (c) 2019-2021 Péter Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal