You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
using GameAtlas.Models;
|
|
using System.Diagnostics;
|
|
|
|
namespace GameAtlas.Views;
|
|
|
|
public partial class PageJeu : ContentPage
|
|
{
|
|
|
|
public Manager JeuManager => (App.Current as App).MyManager;
|
|
public PageJeu()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
private async void OnClicked(object sender, EventArgs e)
|
|
{
|
|
|
|
Jeu MonJeu = new Jeu(JeuEditor.Text);
|
|
JeuManager.AddJeux(MonJeu);
|
|
Debug.WriteLine(JeuManager.ListJeux.Count);
|
|
}
|
|
} |