Dualie
Loading...
Searching...
No Matches
Clock.hpp
1//
2// Created by caleb on 8/1/24.
3//
4
5#ifndef DUALIE_CLOCK_HPP
6#define DUALIE_CLOCK_HPP
7
8#include <3ds.h>
9#include <Dualie/System/Time.hpp>
10namespace dl
11{
15 class Clock
16 {
17
18 uint64_t m_time;
19
20 public:
21 Clock();
22
28
33 };
34}
35
36
37#endif //DUALIE_CLOCK_HPP
A class that handles the passing of time within the program.
Definition Clock.hpp:16
dl::Time restart()
Restarts the clock and returns its elapsed time value.
Definition Clock.cpp:12
dl::Time getElapsedTime()
Definition Clock.cpp:20
A class that handles the conversion of time values.
Definition Time.hpp:14