summaryrefslogtreecommitdiffhomepage
path: root/deprecated/components/debug_singleton.rb
blob: e667191823cb41e96fabfeb5fa2ad34776a64442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class Components
  # If an entity can be rendered on screen
  class DebugSingleton
    class << self
      @data = false
      attr_accessor :data

      def id
        0
      end
    end
  end
end