Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
pch.hpp
1#pragma once
2
3#include <iostream>
4
5#ifdef _WIN32
6 #ifdef ENGINE_CORE
7 #define ENGINE_CORE_API __declspec(dllexport)
8 #else
9 #define ENGINE_CORE_API __declspec(dllimport)
10 #endif
11#else
12 #define ENGINE_CORE_API
13#endif