I'm new to C# started recently and had an idea to make a small text based RPG sort of a game, I am using Visual Studio 2017. I want to have a few different files, including one that marks down all the different types of enemies in the game, how much damage one of their attacks do, their defense and how much health they have. I have this so far:
string rat;
int enemyHealth;
int enemyAtkDmg;
int enemyDef;
But then I started wondering how I could group "string rat;" and the rest together, so for example:
Rat - 10 Health, 2 Attack Damage, 0 Defense.
Any suggestions on how I could do that? Thank you.