21 lines
444 B
C#
21 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Controls;
|
|
|
|
namespace JeuHoy_WPF_Natif.View
|
|
{
|
|
/// <summary>
|
|
/// Description: Interface pour la fenêtre d'entrainement
|
|
/// </summary>
|
|
public interface IwEntrainement
|
|
{
|
|
Image Image { get; set; }
|
|
string Console { get; set; }
|
|
Canvas Canvas { get; set; }
|
|
event EventHandler EntrainementEvt;
|
|
}
|
|
}
|