summaryrefslogtreecommitdiffhomepage
path: root/src/init.rb
blob: 77441ea3bde52f05f05a5beba20de1ed594e09a7 (plain)
1
2
3
4
5
6
7
8
9
10
GameName = 'Orc: Arena of Time'
Rl.init_window(900, 675, GameName)
Rl.init_audio_device if Rl.platform == 'web'

Rl.target_fps = 60

WHITE = Rl::Color.new(255,255,255,255)
BLACK = Rl::Color.new(0,0,0,255)
BLUE = Rl::Color.new(0, 121, 241, 255)
RED = Rl::Color.new(230, 41, 55, 255)