NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
Core.h
1//
2// Created by theoh on 26/02/2025.
3//
4
5#pragma once
6
7#ifdef NARCLOG_BUILD_DLL
8
9#define NARCLOG_API __declspec(dllexport)
10
11#else
12
13#define NARCLOG_API __declspec(dllimport)
14
15#endif