I\'m very new to programming in general so I\'m sure this question is naive.
So, I wrote a simple magic eight ball program and I wanted to move onto an adventure game, b
Get a look at classes.
You will probably want to create a new class file and then add your code something like this:
namespace MyApplication
{
class EightBall
{
public static void eightball ()
{
// Add your code here
}
}
}
Call it from your Main
-function like this:
if (response == 1)
{
EightBall.eightball();
}