mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 20:43:31 +08:00
16 lines
372 B
C#
16 lines
372 B
C#
using BetterGenshinImpact.ViewModel.Pages;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BetterGenshinImpact.View.Pages;
|
|
|
|
public partial class MapPathingPage : UserControl
|
|
{
|
|
private MapPathingViewModel ViewModel { get; }
|
|
|
|
public MapPathingPage(MapPathingViewModel viewModel)
|
|
{
|
|
DataContext = ViewModel = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|