wip: application class
This commit is contained in:
17
src/Renderer.cpp
Normal file
17
src/Renderer.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "Renderer.h"
|
||||
#include "raylib.h"
|
||||
#include "raygui.h"
|
||||
|
||||
void Renderer::Draw()
|
||||
{
|
||||
BeginDrawing();
|
||||
|
||||
ClearBackground(RAYWHITE);
|
||||
//todo: implement renderer
|
||||
//DrawUi(&synth);
|
||||
//DrawSignal(&synth);
|
||||
//DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
|
||||
//DrawFPS(0,0);
|
||||
|
||||
EndDrawing();
|
||||
}
|
||||
Reference in New Issue
Block a user