Files

19 lines
419 B
C
Raw Permalink Normal View History

2025-10-14 11:14:54 +08:00
#pragma once
#include "CesiumGltf/BufferCesium.h"
#include "CesiumGltf/BufferSpec.h"
#include "CesiumGltf/Library.h"
namespace CesiumGltf {
/** @copydoc BufferSpec */
struct CESIUMGLTF_API Buffer final : public BufferSpec {
Buffer() = default;
/**
* @brief Holds properties that are specific to the glTF loader rather than
* part of the glTF spec.
*/
BufferCesium cesium;
};
} // namespace CesiumGltf