fishbowl/engine/include/fishbone/time.h

18 lines
373 B
C
Raw Normal View History

2026-06-01 13:50:35 +09:00
#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();
};
/* no includes */
namespace fishbone {
fishbone::AccurateClock accurateTime();
};
#endif