You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
709 B
C#
27 lines
709 B
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace MarkdownMode.ToolWindow
|
|
{
|
|
public class MarkdownModeOptions : DialogPage
|
|
{
|
|
public delegate void MarkdownModeOptionsChangedHandler();
|
|
public event MarkdownModeOptionsChangedHandler Changed;
|
|
|
|
public string DoxygenBinaryPath { get; set; }
|
|
public string DoxygenXmlCachePath { get; set; }
|
|
public string UnrealDocToolPath { get; set; }
|
|
|
|
protected override void OnApply(DialogPage.PageApplyEventArgs e)
|
|
{
|
|
base.OnApply(e);
|
|
|
|
if (Changed != null)
|
|
{
|
|
Changed();
|
|
}
|
|
}
|
|
}
|
|
}
|