Instead of running a code in a Initialize() method for example, i want to just write a line, something like somecode.run() and it will run everything for me, allowing me to write all the code in a different location for the sake of organization.
I want the code to act like it was in that spot though, so i have access to privates etc.
whats the best way to do this?
edit to clarify:
Here is an example
public class game
{
public void Initialize()
{
I want to run some code here but I don't want to write it here,
I want to write it in another file for the sake of organization,
and just reference it somehow here, but yet still be able to use the
privates as if it was in this spot
}
}