summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/main.c b/src/main.c
deleted file mode 100644
index aeaa9df..0000000
--- a/src/main.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "raylib.h"
-
-#define SCREEN_WIDTH (800)
-#define SCREEN_HEIGHT (450)
-
-int main(void)
-{
- InitWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "Window title");
- SetTargetFPS(60);
-
- Texture2D texture = LoadTexture(ASSETS_PATH"test.png");
-
- while (!WindowShouldClose())
- {
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- const int texture_x = SCREEN_WIDTH / 2 - texture.width / 2;
- const int texture_y = SCREEN_HEIGHT / 2 - texture.height / 2;
- DrawTexture(texture, texture_x, texture_y, WHITE);
-
- const char* text = "OMG! IT WORKS!";
- const Vector2 text_size = MeasureTextEx(GetFontDefault(), text, 20, 1);
- DrawText(text, SCREEN_WIDTH / 2 - text_size.x / 2, texture_y + texture.height + text_size.y + 10, 20, BLACK);
-
- EndDrawing();
- }
-
- CloseWindow();
-
- return 0;
-}