A small game engine for 2D games based of Raylib
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

7 wiersze
234 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);});
}