You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
430 B
19 lines
430 B
// Entry point.
|
|
// Should probably link the engine libs & run the editor but
|
|
// imma hack random shit together for now
|
|
#include "glfw.hpp"
|
|
#include "vulkan.hpp"
|
|
#include "window.hpp"
|
|
|
|
using namespace ls;
|
|
|
|
int main() {
|
|
auto glfw = GlfwState();
|
|
auto vulkan = VulkanState(&glfw);
|
|
auto window = Window(&glfw);
|
|
window.set_title("LightningStrike Hello World!");
|
|
window.init_surface(&vulkan);
|
|
window.show();
|
|
while(1) {}
|
|
}
|