A small game engine for 2D games based of Raylib
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

7 lines
235 B

#include "entities/background_entity.h"
#include "render_state.h"
#include "raylib.h"
void ant::entities::utilities::background_entity::render() {
ant::render::schedule_in_frame(-255, [color = m_color](){ ClearBackground(color);});
}