# Small Update

- Start some work on scrolling
This commit is contained in:
2025-10-18 17:00:35 +02:00
parent 3823f08bab
commit 0ecf559fbb
4 changed files with 53 additions and 2 deletions

View File

@@ -46,5 +46,5 @@ PD_CORE_API void Timer::Pause() { pIsRunning = false; }
PD_CORE_API void Timer::Rseume() { pIsRunning = true; }
PD_CORE_API bool Timer::IsRunning() const { return pIsRunning; }
PD_CORE_API u64 Timer::Get() { return pNow - pStart; }
PD_CORE_API double Timer::GetSeconds() { return double(Get()) / 1000.0; }
PD_CORE_API double Timer::GetSeconds() { return (double)Get() / 1000.0; }
} // namespace PD