raven/src/main.cpp

18 lines
354 B
C++
Raw Normal View History

#include <iostream>
2022-03-08 02:25:22 +02:00
#include "Window.hpp"
#include "Widget.hpp"
2022-03-09 20:16:05 +02:00
#include "Button.hpp"
#include "Box.hpp"
int main() {
Raven::Window window {};
2022-03-09 20:16:05 +02:00
Raven::Button button {"click me!"};
window.spawn_window();
2022-03-09 20:16:05 +02:00
button.set_current_geometry(Raven::Box(10, 10, 100, 30));
window.set_main_widget(&button);
window.run(true);
return 0;
2022-03-08 02:25:22 +02:00
}