Add text editor, misc changes
This commit is contained in:
17
src/text_editor/main.cpp
Normal file
17
src/text_editor/main.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#define BASIC_IMPL
|
||||
#include "../pdf_browser/basic.h"
|
||||
|
||||
#include "raylib.h"
|
||||
|
||||
int main() {
|
||||
InitWindow(1280, 720, "Text editor");
|
||||
SetWindowState(FLAG_WINDOW_RESIZABLE);
|
||||
SetTargetFPS(60);
|
||||
|
||||
while (!WindowShouldClose()) {
|
||||
BeginDrawing();
|
||||
ClearBackground(RAYWHITE);
|
||||
EndDrawing();
|
||||
}
|
||||
CloseWindow();
|
||||
}
|
||||
Reference in New Issue
Block a user