You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env ruby -w
|
|
|
|
require 'Qt'
|
|
require 'tictac'
|
|
|
|
a = TQt::Application.new(ARGV)
|
|
n = 3 # get board size n
|
|
|
|
ttt = TicTacToe.new(n)
|
|
a.setMainWidget(ttt)
|
|
ttt.setCaption('QtRuby Example - TicTac')
|
|
ttt.show()
|
|
a.exec()
|