engine/include/export.h
2022-09-03 05:56:51 +01:00

14 lines
222 B
C

#pragma once
#ifndef ENGINE_API
# ifdef _MSC_VER
# ifdef ENGINE_EXPORTS
# define ENGINE_API __declspec(dllexport)
# else
# define ENGINE_API __declspec(dllimport)
# endif
# else
# define ENGINE_API
# endif
#endif