You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
38 lines
698 B
C
38 lines
698 B
C
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "ImageWrapper.h"
|
|
|
|
|
|
/* Dependencies
|
|
*****************************************************************************/
|
|
|
|
#include "Core.h"
|
|
#include "ModuleManager.h"
|
|
|
|
|
|
/* Private includes
|
|
*****************************************************************************/
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogImageWrapper, Log, All);
|
|
|
|
|
|
#include "ImageWrapperBase.h"
|
|
|
|
#if WITH_UNREALJPEG
|
|
#include "JpegImageWrapper.h"
|
|
#endif
|
|
|
|
#if WITH_UNREALPNG
|
|
#include "PngImageWrapper.h"
|
|
#endif
|
|
|
|
#if WITH_UNREALEXR
|
|
#include "ExrImageWrapper.h"
|
|
#endif
|
|
|
|
#include "BmpImageWrapper.h"
|
|
#include "IcoImageWrapper.h"
|
|
#include "IcnsImageWrapper.h"
|