JacksEscape/Main.cpp

18 lines
278 B
C++
Raw Normal View History

2024-03-01 14:38:18 +08:00
#include <graphics.h>
2024-03-01 15:06:58 +08:00
#include <stdio.h>
#include "Types.h"
2024-03-01 14:38:18 +08:00
int main() {
2024-03-01 15:06:58 +08:00
TimePoint startup = time_Now();
2024-03-01 14:38:18 +08:00
initgraph(640, 480);
circle(200, 200, 100);
Sleep(5000);
closegraph();
2024-03-01 15:06:58 +08:00
printf("%.6lf seconds has elapsed\n", duration_Seconds(time_Since(startup)));
2024-03-01 14:38:18 +08:00
return 0;
}