- [TEST] Tornat a SDL_GetTicks per a probar si te que vore en el mode 'Benny Hill' de Joup
16 lines
318 B
C++
16 lines
318 B
C++
#include "backend.h"
|
|
#include <chrono>
|
|
|
|
namespace backend
|
|
{
|
|
// uint64_t get_time_ms() {
|
|
// using namespace std::chrono;
|
|
// return duration_cast<milliseconds>(
|
|
// steady_clock::now().time_since_epoch()
|
|
// ).count();
|
|
// }
|
|
|
|
void exit() {
|
|
current_state = quitting;
|
|
}
|
|
} |