mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 09:50:40 +08:00
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
// <copyright file="AutoRecruitSettingsUserControl.xaml.cs" company="MaaAssistantArknights">
|
|
// MeoAsstGui - A part of the MeoAssistantArknights project
|
|
// Copyright (C) 2021 MistEO and Contributors
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
// </copyright>
|
|
|
|
using System.Windows.Controls;
|
|
|
|
namespace MeoAsstGui
|
|
{
|
|
/// <summary>
|
|
/// InfrastSettingsUserContril.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class AutoRecruitSettingsUserControl : UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AutoRecruitSettingsUserControl"/> class.
|
|
/// </summary>
|
|
public AutoRecruitSettingsUserControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|