This commit is contained in:
2025-09-25 16:56:53 +08:00
parent e44678d519
commit 1d9da56656
88 changed files with 18171 additions and 0 deletions

20
ijksdl_timer.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef IJKSDL_TIMER_H
#define IJKSDL_TIMER_H
#include <stdint.h>
typedef struct SDL_SpeedSampler2
{
int64_t sample_range;
int64_t last_profile_tick;
int64_t last_profile_duration;
int64_t last_profile_quantity;
int64_t last_profile_speed;
} SDL_SpeedSampler2;
class ijksdl_timer
{
public:
ijksdl_timer();
};
#endif // IJKSDL_TIMER_H