// Copyright (c) Wojciech Figat. All rights reserved. #pragma once #if USE_EDITOR #include "BinaryAssetUpgrader.h" /// /// Texture Asset Upgrader /// /// class TextureAssetUpgrader : public BinaryAssetUpgrader { public: TextureAssetUpgrader() { const Upgrader upgraders[] = { {}, }; setup(upgraders, ARRAY_COUNT(upgraders)); } }; #endif