clboss/Ev/now.cpp

11 lines
101 B
C++
Raw Permalink Normal View History

2020-10-04 16:22:35 +08:00
#include"Ev/now.hpp"
#include<ev.h>
namespace Ev {
double now() {
return ev_now(EV_DEFAULT);
}
}