NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
WindowsLogger.h
1//
2// Created by theoh on 26/02/2025.
3//
4
5#pragma once
6
7#ifdef NARC_ENGINE_PLATFORM_WINDOWS
8
9#include "Logger.h"
10
11namespace narclog
12{
13 class WindowsLogger final : public Logger
14 {
15 public:
16 WindowsLogger();
17 ~WindowsLogger() override;
18 };
19} // narclog
20
21#endif
Definition Logger.h:11