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.
SAE_2.01_-_Developpement_du.../Sources/Modèle/Monstre.cs

48 lines
1.1 KiB

using System.ComponentModel;
using System.Reflection.Metadata;
namespace Modèle;
public class Monstre
{
public int Id { get; set; } = 1;
public string Name { get; set; }
public string Description { get; set; } = string.Empty;
private List<string> characteristic;
public List<string> CharacteristicsList
{
get {
return characteristic;
}
set {
characteristic = value;
}
}
private List<string> appearance;
public List<string> AppearanceList
{
get
{
return appearance;
}
set
{
appearance = value;
}
}
public string IntroduceTest()
{
return $"Je suis un {Name} (id : {Id}). Description : {Description}";
}
public Monstre(int id, string name, string desc, List<string> characList, List<string> appearList)
{
Id = id;
Name = name;
Description = desc;
CharacteristicsList = characList;
AppearanceList = appearList;
}
}