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