blob: baffb94e1142e7dfc7d1be844704dc6447c19e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include "timer.h"
#include "window.h"
#include <SDL2/SDL.h>
//#include "combinedEvent.h"
#include "eventHandler.h"
#include "eventManager.h"
#include "loopManager.h"
class LoopManager {
public:
LoopManager();
void setup();
void loop();
void setRunning(bool running);
private:
void processInput();
void update();
void lateUpdate();
void fixedUpdate();
void render();
bool gameRunning = false;
WindowManager window;
int timeScale = 1;
float accumulator = 0.0;
double currentTime;
double t = 0.0;
double dt = 0.01;
};
|