format: reformat project

Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
This commit is contained in:
Vyacheslav Ivanov
2024-08-03 19:53:48 +03:00
committed by Pugemon
parent 736cd175d5
commit bbf33e8e4d
202 changed files with 7389 additions and 5609 deletions
+7 -6
View File
@@ -1,16 +1,17 @@
#include "LevelEvents.hpp"
#include "../voxels/Chunk.hpp"
using std::vector;
void LevelEvents::listen(lvl_event_type type, const chunk_event_func& func) {
auto& callbacks = chunk_callbacks[type];
callbacks.push_back(func);
auto& callbacks = chunk_callbacks[type];
callbacks.push_back(func);
}
void LevelEvents::trigger(lvl_event_type type, Chunk* chunk) {
const auto& callbacks = chunk_callbacks[type];
for (const chunk_event_func& func : callbacks) {
func(type, chunk);
}
const auto& callbacks = chunk_callbacks[type];
for (const chunk_event_func& func : callbacks) {
func(type, chunk);
}
}