mirror of
https://github.com/ficed/Braver.git
synced 2024-11-23 05:10:08 +00:00
597b9bd61e
Add debughost command line parameters to make it easier to launch multiple copies for network debugging Add descriptions to screens Add UI plugins and hook up to screen descriptions, layout components, field dialog Add first go at Tolk plugin Start adding very bare bones GUI config/launcher app
22 lines
615 B
C#
22 lines
615 B
C#
// This program and the accompanying materials are made available under the terms of the
|
|
// Eclipse Public License v2.0 which accompanies this distribution, and is available at
|
|
// https://www.eclipse.org/legal/epl-v20.html
|
|
//
|
|
// SPDX-License-Identifier: EPL-2.0
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace BraverLauncher {
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application {
|
|
}
|
|
}
|