Euphoria
timer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "SDL_types.h"
4 
5 
6 namespace eu::window
7 {
8  struct SdlTimer
9  {
10  SdlTimer();
11 
12  float
13  update();
14 
15  Uint64 current_time;
16  Uint64 last_time;
17  };
18 }
float update()
Definition: timer.cc:16
Uint64 current_time
Definition: timer.h:15
Uint64 last_time
Definition: timer.h:16