From d96b4ebce5ee6245fa80d27d41b67aa56555c912 Mon Sep 17 00:00:00 2001 From: LucaSas Date: Thu, 4 Nov 2021 16:14:58 +0200 Subject: Changed the template to now download raylib instead of having it in the repo. --- src/main.c | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/main.c (limited to 'src/main.c') 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; -} -- cgit v1.2.3