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; }

Want to kickstart your project?Use the new AI Studio to create your code