Sha256: 5255bb792ee436f0cd4cff21bed35a6b5143e25673ccda259567131d1ebf7a3d

Contents?: true

Size: 270 Bytes

Versions: 1

Compression:

Stored size: 270 Bytes

Contents

class UnderOs::Application
  attr_reader :window

  def self.new(*args)
    @inst ||= super(*args)
  end

  def self.start(&block)
    @inst.instance_eval &block
  end

  def initialize(ios_app, options)
    @_      = ios_app
    @window = UnderOs::Window.new
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
under-os-0.0.0 lib/under_os/application.rb