blob: 14635dff61449bc70b3309f9c6dd644954629626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "../util/Log.h"
#include "Scene.h"
namespace crepe {
template <class... Args>
void Scene::logf(const Log::Level & level, std::format_string<Args...> fmt, Args &&... args) {
Log::logf(level, fmt, std::forward<Args>(args)...);
}
template <class... Args>
void Scene::logf(std::format_string<Args...> fmt, Args &&... args) {
Log::logf(fmt, std::forward<Args>(args)...);
}
} // namespace crepe
|