terminal/src/cascadia/TerminalApp/App.idl
Michael Niksa 3e8a1a78bc Break everything out of App except Xaml platform init (#3465)
This commit breaks everything out of App except the base initialization for XAML.
AppLogic is the new home for all terminal-specific singleton magic.
2019-11-07 13:10:58 -08:00

17 lines
404 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import "../AppLogic.idl";
namespace TerminalApp
{
// ADD ARBITRARY APP LOGIC TO APPLOGIC.IDL, NOT HERE.
// This is for XAML platform setup only.
[default_interface] runtimeclass App : Microsoft.Toolkit.Win32.UI.XamlHost.XamlApplication
{
App();
AppLogic Logic { get; };
}
}