7 lines
183 B
C++
7 lines
183 B
C++
#pragma once
|
|
#include <entt/entt.hpp>
|
|
#include<raylib.h>
|
|
|
|
void create_player(entt::registry& registry,Texture* texture);
|
|
void update_player_system(entt::registry& registry,float dt);
|