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.
18 lines
426 B
18 lines
426 B
using CoreLibrary.Joueurs;
|
|
|
|
namespace CoreLibrary.Manager
|
|
{
|
|
public interface IPersistanceManager
|
|
{
|
|
public bool EstEnregistre { get; }
|
|
|
|
public IEnumerable<Joueur> ChargerJoueurs();
|
|
|
|
public IEnumerable<Partie> ChargerParties();
|
|
|
|
public void EnregistrerJoueurs(IEnumerable<Joueur> donnees);
|
|
|
|
public void EnregistrerParties(IEnumerable<Joueur> donnees);
|
|
}
|
|
}
|