12 lines
407 B
C
12 lines
407 B
C
// Copyright 2020-2024 CesiumGS, Inc. and Contributors
|
|
|
|
#pragma once
|
|
|
|
#include "Runtime/Launch/Resources/Version.h"
|
|
|
|
#define ENGINE_VERSION_5_6_OR_HIGHER \
|
|
(ENGINE_MAJOR_VERSION > 5 || ENGINE_MINOR_VERSION >= 6)
|
|
|
|
#define ENGINE_VERSION_5_7_OR_HIGHER \
|
|
(ENGINE_MAJOR_VERSION > 5 || ENGINE_MINOR_VERSION >= 7)
|