如何显示指针?
class Game < Gosu::Window def initialize super 800,600,false @cursor = Gosu::Image.new(self,'media/cursor.png') end def draw @cursor.draw self.mouse_x,self.mouse_y,0 end end Game.new.show