#pragma once #include "../util/Log.h" #include "Scene.h" namespace crepe { template void Scene::logf(const Log::Level & level, std::format_string fmt, Args &&... args) { Log::logf(level, fmt, std::forward(args)...); } template void Scene::logf(std::format_string fmt, Args &&... args) { Log::logf(fmt, std::forward(args)...); } } // namespace crepe