Loading Screen?

Hello, can you actually code like a loading screen in C++ like in video games?

If there is such thing, can i see or ask for help on how to do it?
closed account (48T7M4Gy)
Depends what you are driving at but:

1
2
3
4
5
6
7
8
9
int main()
{
   cout << "Loading .."

   // Loading stuff goes here

   cout << "Loaded";
   return 0;
}


Then you can get more complicated with percentages, graphics, blah blah.

http://stackoverflow.com/questions/14539867/how-to-display-a-progress-indicator-in-pure-c-c-cout-printf might be a start
Topic archived. No new replies allowed.