interference/include/conf.h

18 lines
289 B
C
Raw Permalink Normal View History

2021-12-22 16:18:06 +01:00
#pragma once
#define PLAYER_S 12
2022-01-12 16:43:22 +01:00
#define PLAYER_W 22
#define PLAYER_H 18
2021-12-23 10:00:55 +01:00
2022-01-08 19:25:47 +01:00
#define PLAYER_ACC 1.5
2021-12-23 17:43:44 +01:00
#define PLAYER_FRIC 0.4
2022-01-08 19:25:47 +01:00
#define PLAYER_JUMP 6.5
2021-12-23 10:00:55 +01:00
#define PLAYER_COYOTE 3
#define GRAVITY 0.4
2021-12-23 15:13:06 +01:00
#define TILE_S 8
#define TILESET_W 16
#define TILESET_H 4
2022-01-14 21:52:46 +01:00
#define MAX_BULLETS 64