Initial commit - https://www.youtube.com/watch?v=_riranMmtvI&list=PL8327DO66nu9qYVKLDmdLW_84-yE4auCR&index=3
This commit is contained in:
13
tests/basic/src/main.cpp
Normal file
13
tests/basic/src/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user