mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
15 lines
No EOL
222 B
C++
15 lines
No EOL
222 B
C++
#include "main.h"
|
|
|
|
int main(
|
|
int argc,
|
|
char* argv[]
|
|
) {
|
|
auto app = Gtk::Application::create(
|
|
APPLICATION_ID
|
|
);
|
|
|
|
return app->make_window_and_run<app::Browser>(
|
|
argc,
|
|
argv
|
|
);
|
|
} |