aboutsummaryrefslogtreecommitdiff
path: root/src/engine/level_const.h
blob: b86ae7b73537ea3b423f1c5dbe83c6c3e0e506ba (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
30
31
#pragma once
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include "engine/maths.h"
#include "engine/entity.h"

typedef enum {
	hh_e_state_starting_screen,
	hh_e_state_shop,
	hh_e_state_gameplay,
	hh_e_state_game_over,
	hh_e_state_high_score
} hh_e_game_state;
//entity array met enemeies
typedef struct  {
	vec2 size;
	int hh_total_enemies;
	int* place;
	bool hh_level_completed;
}hh_level_entity;

typedef struct  {
	hh_level_entity level[2];
	int current_level;


}hh_g_all_levels;

hh_g_all_levels hh_init_game_levels();