blob: 886424dbd1c95d10e33310d37788e23eb9a3ec4d (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <chrono>
#include <ctime>
using TickDuration = std::chrono::duration<float, std::chrono::seconds::period>;
time_t operator""_time_t(const char * iso, size_t);
std::chrono::seconds operator""_seconds(const char * iso, size_t);
|