Files
UnrealEngineUWP/Engine/Source/Programs/UnrealProjectTemplate/WizardAssembly/WizardControl.xaml.cs
Thomas Sarkanen 8ba3c4c087 Merging //UE4/Dev-Main to Dev-Anim (//UE4/Dev-Anim) @ CL 4643671
#rb none
#jira none

[CL 4665410 by Thomas Sarkanen in Dev-Anim branch]
2018-12-17 06:31:16 -05:00

31 lines
705 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WizardAssembly
{
/// <summary>
/// Interaction logic for WizardControl.xaml
/// </summary>
public partial class WizardControl : UserControl
{
public WizardControl()
{
InitializeComponent();
}
}
}