10 lines
192 B
C++
10 lines
192 B
C++
#pragma once
|
|
|
|
#include<raylib.h>
|
|
#include<entt/entt.hpp>
|
|
|
|
void create_fruit(entt::registry& registry,Texture* texture);
|
|
|
|
void update_fruit_system(entt::registry& registry,float dt);
|
|
|