wow, I created ground and fire

This commit is contained in:
elwld 2022-07-10 01:12:20 +05:00
parent c14d6e6c59
commit 2288fb8d15
14 changed files with 185 additions and 48 deletions

View file

@ -4,11 +4,18 @@ GameEvent game(Window &window)
{
Event event;
Ground ground(0, 200);
Fire fire(-10,72);
while(true)
{
if (event == Quit) window.quit();
window.clear();
window.draw(ground);
window.draw(fire);
window.update();
}