jumpartifact.com_demo_0/src/game.cc

16 lines
237 B
C++
Raw Normal View History

#include "game.h"
// third party includes
#include <raylib.h>
Game::Game() {}
void Game::update() {}
2023-07-31 06:28:01 +00:00
void Game::draw() {
BeginDrawing();
ClearBackground(BLACK);
DrawText("Testing...", 100, 100, 30, RAYWHITE);
EndDrawing();
}