mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
18 lines
319 B
C#
18 lines
319 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
|
|
{
|
|
public interface ITalkBox
|
|
{
|
|
/// <summary>
|
|
/// 当前UI
|
|
/// </summary>
|
|
UIElement This { get; }
|
|
}
|
|
}
|