blob: 5f07b2e54bc38b76040a895bfd740c3ca07cffd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "player_controller.h"
#include "engine/sprite_controller.h"
#include "input.h"
void hh_shoot_bullet(vec2 playerPos, vec_cor cam_pos, hh_entity*);
void hh_update_bullet(hh_entity* , vec_cor );
void hh_draw_bullet(hh_entity);
|