summaryrefslogtreecommitdiffhomepage
path: root/deprecated/components/debug_singleton.rb
blob: f29817207db2775ff08e0754f7bb9f59d1584ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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