-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_design.h
36 lines (21 loc) · 904 Bytes
/
level_design.h
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
30
31
32
33
34
35
36
//level_design.h
/******************************************************************************
* LEVEL DESIGN
******************************************************************************/
#ifndef LEVEL_DESIGN_H_PARSED
#define LEVEL_DESIGN_H_PARSED
#include "main.h"
#include "game.h"
// OPTIONS ////////////////////////////////////////////////////////////////////
#define WARP_AROUND_SPAWNS_ENEMY TRUE
// PROTOTYPES /////////////////////////////////////////////////////////////////
void populate_level( game_state_t* GS );
// Old routines
void generate_black_hole( game_state_t* GS );
void blackhole_attracts_ship( game_state_t* GS );
void advance_to_next_level( program_state_t* PS, game_state_t* GS );
void prepare_first_level( program_state_t* PS, game_state_t* GS );
real_t calculate_enemy_beyond_y( game_state_t* GS );
void player_warped_around( game_state_t* GS );
#endif
//EOF