class Joyce::NullWindow

Attributes

app[R]

Public Class Methods

new(app, width: 800, height: 600) click to toggle source
# File lib/joyce.rb, line 58
def initialize(app, width: 800, height: 600)
  # p [ :created_null_window, provided_dimensions: [ width, height ] ]
  @app = app
end

Public Instance Methods

draw_quad(*) click to toggle source
# File lib/joyce.rb, line 68
def draw_quad(*)
  # p [ :null_window, :draw_quad ]
  self
end
show() click to toggle source
# File lib/joyce.rb, line 63
def show
  app.tick
  false
end