初始提交: UE5.3项目基础框架

This commit is contained in:
2025-10-14 11:14:54 +08:00
commit 721d9fd98e
5334 changed files with 316782 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#pragma once
/**
* @brief Classes for accessing terrain based on layer.json and
* quantized-mesh-1.0.
*
* @mermaid-interactive{dependencies/CesiumQuantizedMeshTerrain}
*/
namespace CesiumQuantizedMeshTerrain {}
#if defined(_WIN32) && defined(CESIUM_SHARED)
#ifdef CESIUMQUANTIZEDMESHTERRAIN_BUILDING
#define CESIUMQUANTIZEDMESHTERRAIN_API __declspec(dllexport)
#else
#define CESIUMQUANTIZEDMESHTERRAIN_API __declspec(dllimport)
#endif
#else
#define CESIUMQUANTIZEDMESHTERRAIN_API
#endif