view raylib_examples/main.c @ 71:75de5903355c

Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
author June Park <parkjune1995@gmail.com>
date Sun, 28 Dec 2025 20:34:22 -0800
parents f33d9ff8b6e8
children
line wrap: on
line source

#include <stdio.h>
#include "dowa/dowa.h"
#include "third_party/raylib/include/raylib.h" 

int main()
{
  InitWindow(800, 450, "raylib [core] example - basic window");
  while (!WindowShouldClose())
  {
      BeginDrawing();
          ClearBackground(RAYWHITE);
          DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
      EndDrawing();
  }
  CloseWindow();
  return 0;
}