VPet/VPet-Simulator.Windows.Interface/ITalkBox.cs
2023-04-02 02:15:50 +11:00

18 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace VPet_Simulator.Windows.Interface
{
public interface ITalkBox
{
/// <summary>
/// 当前UI
/// </summary>
UIElement This { get; }
}
}