初始提交: UE5.3项目基础框架
This commit is contained in:
19
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumRasterOverlays/Library.h
vendored
Normal file
19
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumRasterOverlays/Library.h
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @brief Classes for raster overlays, which allow draping massive 2D textures
|
||||
* over a model.
|
||||
*
|
||||
* @mermaid-interactive{dependencies/CesiumRasterOverlays}
|
||||
*/
|
||||
namespace CesiumRasterOverlays {}
|
||||
|
||||
#if defined(_WIN32) && defined(CESIUM_SHARED)
|
||||
#ifdef CESIUMRASTEROVERLAYS_BUILDING
|
||||
#define CESIUMRASTEROVERLAYS_API __declspec(dllexport)
|
||||
#else
|
||||
#define CESIUMRASTEROVERLAYS_API __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#define CESIUMRASTEROVERLAYS_API
|
||||
#endif
|
||||
Reference in New Issue
Block a user