Yggtk/src/main.vala

29 lines
833 B
Vala
Raw Normal View History

2020-01-17 22:13:39 +00:00
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using Gtk;
int main (string[] args) {
Gtk.init (ref args);
2020-01-17 22:13:39 +00:00
2020-01-25 22:13:54 +00:00
Yggtk.AppWindow window = new Yggtk.AppWindow ();
window.show_all ();
2020-01-17 22:13:39 +00:00
2020-01-25 22:13:54 +00:00
Gtk.main ();
2020-01-17 22:13:39 +00:00
return 0;
2020-01-17 22:13:39 +00:00
2020-01-25 22:13:54 +00:00
}