larra/src/main_window.cpp

11 lines
208 B
C++
Raw Normal View History

2024-08-26 04:29:16 +00:00
module;
#include <gtkmm.h>
export module larra.main_window;
export struct MainWindow : public Gtk::Window {
MainWindow() {
this->set_title("XMPP Client");
this->set_default_size(200, 200);
};
};