This commit is contained in:
2025-01-02 15:17:14 -05:00
parent 18072f3b66
commit bd72263944
12 changed files with 72 additions and 17 deletions

View File

@@ -1,9 +1,7 @@
#include <Game/Entity/Box.h>
void Game::Box::Render() {
J2D::Begin(nullptr, true);
J2D::FillRect(Colors::Red, Vector2(position), {20, 20});
J2D::End();
J2D::FillRect(Colors::Red, Vector2(position), {20, 20});
}
void Game::Box::Update() {