You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
41 lines
782 B
C#
41 lines
782 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using EnvDTE;
|
|
using Microsoft.VisualStudio.TemplateWizard;
|
|
|
|
namespace WizardAssembly
|
|
{
|
|
class IWizardImpl : IWizard
|
|
{
|
|
public void RunStarted(object automationObject, Dictionary<string, string> replacementsDictionary, WizardRunKind runKind, object[] customParams)
|
|
{
|
|
var window = new WizardWindow();
|
|
window.ShowDialog();
|
|
}
|
|
|
|
public void ProjectFinishedGenerating(Project project)
|
|
{
|
|
}
|
|
|
|
public void ProjectItemFinishedGenerating(ProjectItem projectItem)
|
|
{
|
|
}
|
|
|
|
public bool ShouldAddProjectItem(string filePath)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public void BeforeOpeningFile(ProjectItem projectItem)
|
|
{
|
|
}
|
|
|
|
public void RunFinished()
|
|
{
|
|
}
|
|
}
|
|
}
|