2023-10-24 23:22:47 +03:00

18 lines
183 B
C++

//
// Created by erki on 24/10/23.
//
#include "cpptick/timer.hpp"
#include "cpptick/scheduler.hpp"
namespace cpptick
{
void Timer::start()
{
scheduler_->storeTimer(this);
}
}