29 lines
471 B
C#
Raw Normal View History

2022-10-13 13:53:26 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programmation_objet_TLESIO21.projet {
public enum Type {
NORMAL,
GRASS,
FIRE,
WATER,
ELECTRIC,
FLYING,
BUG,
ROCK,
GROUND,
PSYCHIC,
POISON,
GHOST,
DARK,
STEEL,
COMBAT,
ICE,
DRAGON,
FAIRY
}
}