Original Post
So i finnished writing some basic network code, and thought about the in game commands. I wanted to be able to turn, lets say
"app.quit()"
and in game make the game quit. I started now by writing
if(ClassDepth[0]=="app")
{
if(ClassDepth[1]=="quit"){app.quit();}
}
but it will take a long time to re write everything. is there any way to make this easier?
"app.quit()"
and in game make the game quit. I started now by writing
if(ClassDepth[0]=="app")
{
if(ClassDepth[1]=="quit"){app.quit();}
}
but it will take a long time to re write everything. is there any way to make this easier?