2025-06-20 15:10:02 +10:00
parent 912d5cb768
commit 62b1e79ec5
15 changed files with 522 additions and 0 deletions

13
tests/basic/src/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "basalt_context.h"
#include "basalt_window.h"
int main()
{
basalt::Window window(640, 480, "Hello Vulkan!");
while (!window.should_close())
{
glfwPollEvents();
}
return 0;
}