summaryrefslogtreecommitdiffhomepage
path: root/app/lib/components/05_interactable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/components/05_interactable.rb')
-rw-r--r--app/lib/components/05_interactable.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/lib/components/05_interactable.rb b/app/lib/components/05_interactable.rb
deleted file mode 100644
index 636a216..0000000
--- a/app/lib/components/05_interactable.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class Components
- # If an entity can be rendered on screen
- class Interactable < Helper::BaseComponent
- attr_accessor :z
-
- def initialize
- @z = z
- end
-
- def set(**opts)
- opts.each do |key, value|
- self.send "#{key}=", value
- end
- end
- end
-end