// Echo.cs is part of Echo Media Player
// Copyright (C) 2008 Shane O'Connell
//
// [ The original file includes a copyright header in this location describing
// the file as being released under the terms of the GNU General Public
// License. It has been removed in order to display the file as part of the
// archive. ]
//
using System;
using Echo;
namespace Echo
{
public class Echo
{
public static void Main(string[] args)
{
Gtk.Application.Init("Echo Media Player", ref args);
var main_window = new UI.MainWindow();
main_window.Show();
Gtk.Application.Run();
}
}
}