mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
12 lines
259 B
C++
12 lines
259 B
C++
#pragma once
|
|
|
|
#include <condition_variable>
|
|
#include <mutex>
|
|
|
|
namespace wpilib { namespace internal {
|
|
extern double simTime;
|
|
extern std::condition_variable time_wait;
|
|
extern std::mutex time_wait_mutex;
|
|
// transport::SubscriberPtr time_sub;
|
|
}}
|