Pierre Angelo

Generation

generate functionWed, 05 Apr 2023

¿Cómo mostrar por pantalla el tiempo transcurrido en unity?

#include <time.h> void ShowTime() { time_t t = time(NULL); tm tl = *localtime(&t); cout << tl.tm_hour << ":" << tl.tm_min << ":" << tl.tm_sec << endl; }

Questions about programming?Chat with your personal AI assistant