Cogs.Core
EditorExtension.h
1#pragma once
2
3#include "Editor/IEditor.h"
4
5#if defined(_WIN32)
6 #ifdef COGSCORE_EDITOR_BUILD
7 #define COGSCORE_EDITOR_API __declspec(dllexport)
8 #else
9 #define COGSCORE_EDITOR_API __declspec(dllimport)
10 #endif
11#else
12 #define COGSCORE_EDITOR_API
13#endif