blob: 6a03a144a668b98cb8319e12ed0033bd0d7c2e30 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #pragma once
#include "Config.h"
#include <crepe/api/Config.h>
static const crepe::Config ENGINE_CONFIG {
	.log {
		.level = crepe::Log::Level::DEBUG,
	},
	.physics {
		// this division factor is now the amount of seconds it approximately takes to naturally
		// fall from the ceiling to floor
		.gravity = HALLWAY_HEIGHT / 0.5,
	},
	.window_settings {
		.window_title = "Jetpack joyride clone",
	},
};
 |