14 lines
194 B
C++
14 lines
194 B
C++
#include "basalt_context.h"
|
|
#include "basalt_window.h"
|
|
|
|
int main()
|
|
{
|
|
basalt::Window window(640, 480, "Hello Vulkan!");
|
|
while (!window.should_close())
|
|
{
|
|
glfwPollEvents();
|
|
|
|
}
|
|
return 0;
|
|
}
|