/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Foundation/Serialization/Implementation/GraphPatch.cpp
31 строка
703 B
Ingrater
Clang-format fixes and update to 18.1.1 (#1234)
10 мар 2024, 15:51
Не верифицирован
10 мар 2024, 15:51
2f16acf
Код
Авторство
О чём код?
#include <Foundation/FoundationPCH.h> #include <Foundation/Serialization/AbstractObjectGraph.h> #include <Foundation/Serialization/GraphPatch.h> #include <Foundation/Serialization/GraphVersioning.h> #include <Foundation/Serialization/RttiConverter.h> EZ_ENUMERABLE_CLASS_IMPLEMENTATION(ezGraphPatch); ezGraphPatch::ezGraphPatch(const char* szType, ezUInt32 uiTypeVersion, PatchType type) : m_szType(szType) , m_uiTypeVersion(uiTypeVersion) , m_PatchType(type) { } const char* ezGraphPatch::GetType() const { return m_szType; } ezUInt32 ezGraphPatch::GetTypeVersion() const { return m_uiTypeVersion; } ezGraphPatch::PatchType ezGraphPatch::GetPatchType() const { return m_PatchType; }