A small game engine for 2D games based of Raylib
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 

7 řádky
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);});
}