Files
UnrealEngineUWP/Engine/Source/Developer/WidgetCarousel/Private/WidgetCarouselModule.cpp
Frank Fella f8d44675b6 WidgetCarousel - Add style structs for the navigation button and bar, and add separate styles for the launcher.
#codereview justin.sargent

[CL 2362515 by Frank Fella in Main branch]
2014-11-17 16:01:03 -05:00

16 lines
341 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "WidgetCarouselPrivatePCH.h"
void FWidgetCarouselModule::StartupModule()
{
FWidgetCarouselModuleStyle::Initialize();
}
void FWidgetCarouselModule::ShutdownModule()
{
FWidgetCarouselModuleStyle::Shutdown();
}
IMPLEMENT_MODULE(FWidgetCarouselModule, WidgetCarousel);