Add move validation tests.
[kaya/ydirson.git] / main / main.rb
blob117826afcc7133f5d87bf1a8bfa763f2ef6b97cb
1 require 'korundum4'
3 description = "KDE Board Game Suite"
4 version = "1.5"
5 about = KDE::AboutData.new("tagua", "Tagua", KDE.ki18n("Tagua"),
6     version, KDE.ki18n(description),KDE::AboutData::License_GPL,KDE.ki18n("(C) 2003 whoever the author is"))
8 about.addAuthor(KDE.ki18n("author1"), KDE.ki18n("whatever they did"), "email@somedomain")
9 about.addAuthor(KDE.ki18n("author2"), KDE.ki18n("they did something else"), "another@email.address")
11 KDE::CmdLineArgs.init(ARGV, about)
13 app = KDE::Application.new
14 main = KDE::MainWindow.new(nil)
15 main.show
16 app.exec