classes pour mvp

This commit is contained in:
Merlin Gélinas
2023-05-03 10:55:18 -04:00
parent be9041cd6f
commit 9fa5393254
6 changed files with 92 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
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;
}
}