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.

38 lines
821 B

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
internal class System
{
public bool theme_color = true;
public int num_page = 0 ;
public System() { }
public void ChangeColor()
{
if (theme_color = true)
theme_color = false;
else theme_color = true;
}
public void RechercheAnimal(string nom)
{
if (nom == null)
{
Console.WriteLine("Aucun animal qui s'appele", nom);
return;
}
}
public void Retour()
{
num_page = num_page - 1;
}
}
}