BeamMP-Server/include/ChronoWrapper.h
Lucca Jiménez Könings 29f4d0d286 run clang-format
2024-06-26 14:06:06 +02:00

9 lines
180 B
C++

#pragma once
#include <chrono>
#include <string>
namespace ChronoWrapper {
std::chrono::high_resolution_clock::duration TimeFromStringWithLiteral(const std::string& time_str);
}