feat: window init

This commit is contained in:
Rendo 2026-08-26 22:03:52 +05:00
commit 9aaa7a9374
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
build*/
compile_commands.json

View file

@ -0,0 +1,5 @@
project('PowderTech', 'cpp')
rlib = dependency('raylib')
executable('powder-tech','src/main.cpp',dependencies: rlib)

View file

@ -1,3 +1,14 @@
#include <raylib.h>
int main(int argc, char *argv[]) {
InitWindow(640, 360, "PowderTech");
while(WindowShouldClose() == false) {
}
CloseWindow();
return 0;
}