2022-01-22 17:51:54 +02:00
|
|
|
#include <iostream>
|
2022-03-08 02:25:22 +02:00
|
|
|
#include "Window.hpp"
|
2022-01-22 17:51:54 +02:00
|
|
|
|
|
|
|
int main() {
|
2022-03-09 03:46:27 +02:00
|
|
|
Raven::Window window {};
|
2022-01-22 17:51:54 +02:00
|
|
|
|
2022-03-08 02:25:22 +02:00
|
|
|
window.spawn_window();
|
2022-03-09 03:46:27 +02:00
|
|
|
window.run(true);
|
2022-01-22 17:51:54 +02:00
|
|
|
|
|
|
|
return 0;
|
2022-03-08 02:25:22 +02:00
|
|
|
}
|