module RGSS3
Constants
- VERSION
Attributes
fiber[R]
window[R]
Public Class Methods
run(**options, &block)
click to toggle source
# File lib/rgss3.rb, line 34 def run(**options, &block) @fiber = Fiber.new(&block) @window = RGSS3::GameWindow.new(**options) @window.show end