@R_403_323@
我正在使用这样的东西:
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