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.
21 lines
573 B
21 lines
573 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.Stub
|
|
{
|
|
public static class StubPersonnage
|
|
{
|
|
public static IEnumerable<Personnage> RecupererPersonnage()
|
|
{
|
|
List<Personnage> perso = new List<Personnage>()
|
|
{
|
|
new Personnage("Luffy", "Luffy au Chapeau de Paille", 19,1.74, "East Blue", "Feu Clé Noir", "Jean Neymar", "luffy.png"),
|
|
|
|
};
|
|
return perso;
|
|
}
|
|
}
|
|
} |