I recently switched over from C++ to C# and I am wondering how I would do the equivalent in c#. In C++ I could have done this:
Enemy *enemy;
enemy = new Enemy("Goblin", 20, 20);
In c#, I tried the pointer methond and using a delegate and both failed. The thing is I have multiple enemys in my Text RPG and I need to assign a specific enemy to my enemy pointer class so I then can preform the battle processes.