1#ifndef ENGINE_SHARED_ASSERTION_LOGGER_H
2#define ENGINE_SHARED_ASSERTION_LOGGER_H
3
4#include <memory>
5
6class ILogger;
7class IStorage;
8
9std::unique_ptr<ILogger> CreateAssertionLogger(IStorage *pStorage, const char *pGameName);
10
11#endif
12