XIVChat/XIVChat Desktop/Targeting.xaml.cs

15 lines
314 B
C#

using System.Windows;
namespace XIVChat_Desktop {
public partial class Targeting {
public App App => (App) Application.Current;
public Targeting(Window owner) {
this.Owner = owner;
this.DataContext = this;
this.InitializeComponent();
}
}
}