1/*
2 * Copyright (c) 2008-2009, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Artur Wyszynski <harakash@gmail.com>
7 */
8
9
10#include "GradientsApp.h"
11
12
13#include "GradientsWindow.h"
14
15
16GradientsApp::GradientsApp(void)
17	: BApplication("application/x-vnd.Haiku-Gradients")
18{
19	GradientsWindow* window = new GradientsWindow();
20	window->Show();
21}
22
23
24int
25main()
26{
27	GradientsApp app;
28	app.Run();
29	return 0;
30}
31