#!ruby # -*- mode: ruby; coding: utf-8 -*- # Last updated: <2016/12/11 14:22:06 +0900> # # Gosuの動作確認 # # 動作確認環境: # Windows10 x64 + Ruby 2.2.6 p396 mingw32 + Gosu 0.10.8 x86-mingw32 require 'gosu' class MyWindow < Gosu::Window # コンストラクタ def initialize super 640, 480, false self.caption = 'Hello World!' end # 更新処理 def update end # 描画処理 def draw end end window = MyWindow.new window.show