summaryrefslogtreecommitdiffhomepage
path: root/deprecated/components/05_interactable.rb
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-02-17 07:55:00 -0500
committerrealtradam <[email protected]>2022-02-17 07:55:00 -0500
commitfcd25e47987a8fd35a1712201dcc035707fd462c (patch)
tree74e5513a0859bc9ed2e0843071c341730a992260 /deprecated/components/05_interactable.rb
parent99ebe846c1f2aeb63d21eb2a0ddebcf751d28aae (diff)
downloadFelECS-fcd25e47987a8fd35a1712201dcc035707fd462c.tar.gz
FelECS-fcd25e47987a8fd35a1712201dcc035707fd462c.zip
fix code climate and remove deprecated files
Diffstat (limited to 'deprecated/components/05_interactable.rb')
-rw-r--r--deprecated/components/05_interactable.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/deprecated/components/05_interactable.rb b/deprecated/components/05_interactable.rb
deleted file mode 100644
index bee91f6..0000000
--- a/deprecated/components/05_interactable.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-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|
- send "#{key}=", value
- end
- end
- end
-end