fishbowl/engine/include/fishbone/time.h
2026-06-05 21:43:30 +09:00

18 lines
395 B
C++

#ifndef __FISHBONE_TIME_H__
#define __FISHBONE_TIME_H__
#include <fishbone/pre.h>
namespace fishbone {
using AccurateClock = std::chrono::time_point<std::chrono::high_resolution_clock, std::chrono::high_resolution_clock::duration>;
fishbone::AccurateClock accurateTime();
}; // namespace fishbone
/* no includes */
namespace fishbone {
fishbone::AccurateClock accurateTime();
};
#endif