NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
Core.h
1#pragma once
2
3#ifdef NARC_ENGINE_BUILD_DLL
4
5#define NARC_ENGINE_API __declspec(dllexport)
6
7#else
8
9#define NARC_ENGINE_API __declspec(dllimport)
10
11#endif
12
13
14#ifdef NARC_BUILD_DEBUG
15
16#define ENABLE_VALIDATION_LAYERS
17
18#else
19
20#endif