VPet/VPet-Simulator.Core/Graph/FoodAnimation.xaml.cs

29 lines
657 B
C#
Raw Normal View History

2022-12-13 07:10:18 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
2023-01-20 17:01:10 +00:00
namespace VPet_Simulator.Core.Graph
2022-12-13 07:10:18 +00:00
{
/// <summary>
2023-01-20 17:01:10 +00:00
/// FoodAnimation.xaml 的交互逻辑
2022-12-13 07:10:18 +00:00
/// </summary>
2023-01-20 17:01:10 +00:00
public partial class FoodAnimation : UserControl
2022-12-13 07:10:18 +00:00
{
2023-01-20 17:01:10 +00:00
public FoodAnimation()
2022-12-13 07:10:18 +00:00
{
InitializeComponent();
}
}
}