VPet/VPet-Simulator.Windows/Function/ITalkBox.cs

18 lines
319 B
C#
Raw Normal View History

2023-03-13 15:40:04 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace VPet_Simulator.Windows
{
public interface ITalkBox
{
/// <summary>
/// 当前UI
/// </summary>
UIElement This { get; }
}
}