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 <fstream>
4#include <vector>
5#include <string>
6#include <map>
7#include <unordered_map>
8
9#ifdef _WIN32
10 #ifdef EDITOR_MATERIAL_IMPORTER_DLL
11 #define EDITOR_MATERIAL_IMPORTER_EXPORT __declspec(dllexport)
12 #else
13 #define EDITOR_MATERIAL_IMPORTER_EXPORT __declspec(dllimport)
14 #endif
15#else
16 #define EDITOR_MATERIAL_IMPORTER_EXPORT
17#endif