MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / F_Loading

Function F_Loading

Project_Labirint_Game/olaf-game.cpp:142–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140
141
142void F_Loading() {
143 for (int i = 1; i <= 12; i++) {
144
145 window.clear(sf::Color::White);
146 if (i == 1 || i == 4 || i == 7 || i == 10) window.draw(Loading_1);
147 if (i == 2 || i == 5 || i == 8 || i == 11) window.draw(Loading_2);
148 if (i == 3 || i == 6 || i == 9 || i == 12) window.draw(Loading_3);
149 window.display();
150 Sleep(0700);
151 }
152
153}
154
155//main part
156int main()

Callers 1

mainFunction · 0.70

Calls 1

displayMethod · 0.45

Tested by

no test coverage detected