靴を使用して競馬/賭けゲームを書いていますが、コードのさまざまな領域で GUI をどのように変更できるか疑問に思っていました。これを実行すると、あるアプリケーションで馬を取得し、別のアプリケーションで競走馬を取得しますが、同じアプリケーションで両方を取得したいと考えています。実際の Shoes アプリを変数自体として設定する必要がありますか?
class Horse
def initialize()
#puts "YOYOYOYO"
#@number=i
Shoes.app{
@icon= image 'horsey.jpg'
@icon.left = 100
@icon.top = 50
}
end
def neigh()
#puts "Neighhhh"
end
def raceTime()
time=rand(100)%20
return time+10
end
end
class HorseIcon
def initialize(h)
@horse= h
@imageloc='horsey.jpg'
end
end
class Game
def initialize(h1, h2)
contestants=[h1, h2]
Shoes.app{
@icon= image 'raceline.jpg'
@icon.left = 100
@icon.top = 70
}
end
def race()
end
end
game= Game.new(1,2)
seabiscuit= Horse.new()