diff --git a/CoreLibrary/Combinaison.cs b/CoreLibrary/Combinaison.cs index ffedd46..9bb0acf 100644 --- a/CoreLibrary/Combinaison.cs +++ b/CoreLibrary/Combinaison.cs @@ -1,4 +1,4 @@ -namespace BibliothequeClasses +namespace CoreLibrary { public abstract class Combinaison { diff --git a/CoreLibrary/CombinaisonIndicateur.cs b/CoreLibrary/CombinaisonIndicateur.cs index 59d5073..95fc816 100644 --- a/CoreLibrary/CombinaisonIndicateur.cs +++ b/CoreLibrary/CombinaisonIndicateur.cs @@ -1,4 +1,4 @@ -namespace BibliothequeClasses +namespace CoreLibrary { public class CombinaisonIndicateur : Combinaison { diff --git a/CoreLibrary/CombinaisonJoueur.cs b/CoreLibrary/CombinaisonJoueur.cs index 88ba4d8..0ad12e7 100644 --- a/CoreLibrary/CombinaisonJoueur.cs +++ b/CoreLibrary/CombinaisonJoueur.cs @@ -1,4 +1,4 @@ -namespace BibliothequeClasses +namespace CoreLibrary { public class CombinaisonJoueur : Combinaison { diff --git a/CoreLibrary/CombinaisonSecrete.cs b/CoreLibrary/CombinaisonSecrete.cs index 9b45ba6..e22e7b5 100644 --- a/CoreLibrary/CombinaisonSecrete.cs +++ b/CoreLibrary/CombinaisonSecrete.cs @@ -1,4 +1,4 @@ -namespace BibliothequeClasses +namespace CoreLibrary { public class CombinaisonSecrete : Combinaison { diff --git a/CoreLibrary/Couleurs.cs b/CoreLibrary/Couleurs.cs index 35a7015..1963ba9 100644 --- a/CoreLibrary/Couleurs.cs +++ b/CoreLibrary/Couleurs.cs @@ -1,6 +1,4 @@ -using System; - -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Énumération représentant les 6 couleurs que peuvent prendre les jetons. diff --git a/CoreLibrary/Joueur.cs b/CoreLibrary/Joueur.cs index e72b92e..f997809 100644 --- a/CoreLibrary/Joueur.cs +++ b/CoreLibrary/Joueur.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System; - -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Représente un joueur dans une partie. diff --git a/CoreLibrary/Partie.cs b/CoreLibrary/Partie.cs index 457ac37..1c16855 100644 --- a/CoreLibrary/Partie.cs +++ b/CoreLibrary/Partie.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Représente une partie du jeu. diff --git a/CoreLibrary/abc.cs b/CoreLibrary/abc.cs deleted file mode 100644 index f494391..0000000 --- a/CoreLibrary/abc.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BibliothequeClasses -{ - public abstract class Combinaison; - public class CombinaisonSecrete : Combinaison - { - public bool EstEgal(CombinaisonJoueur combinaisonJoueur) - { - return true; - } - }; - public class CombinaisonJoueur : Combinaison; - public class CombinaisonIndicateur : Combinaison; - -}