Sha256: be82b41207eb4c943b45d22451ab8c9c1f4404dd79ab6d0a1be19c8afb04e2fe

Contents?: true

Size: 239 Bytes

Versions: 4

Compression:

Stored size: 239 Bytes

Contents

# frozen_string_literal: true

module RubyJard
  module Screens
    class EmptyScreen < RubyJard::Screen
      def draw
        # Do nothing
      end
    end
  end
end

RubyJard::Screens.add_screen(:empty, RubyJard::Screens::EmptyScreen)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby_jard-0.2.2 lib/ruby_jard/screens/empty_screen.rb
ruby_jard-0.2.1 lib/ruby_jard/screens/empty_screen.rb
ruby_jard-0.2.0 lib/ruby_jard/screens/empty_screen.rb
ruby_jard-0.1.0 lib/ruby_jard/screens/empty_screen.rb