summaryrefslogtreecommitdiffhomepage
path: root/deprecated/components/07_overworld.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/07_overworld.rb
parent99ebe846c1f2aeb63d21eb2a0ddebcf751d28aae (diff)
downloadFelECS-fcd25e47987a8fd35a1712201dcc035707fd462c.tar.gz
FelECS-fcd25e47987a8fd35a1712201dcc035707fd462c.zip
fix code climate and remove deprecated files
Diffstat (limited to 'deprecated/components/07_overworld.rb')
-rw-r--r--deprecated/components/07_overworld.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/deprecated/components/07_overworld.rb b/deprecated/components/07_overworld.rb
deleted file mode 100644
index cea11f5..0000000
--- a/deprecated/components/07_overworld.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class Components
- class Overworld < Helper::Level
- attr_accessor :x, :y
-
- def initialize
- @x = 0
- @y = 0
- end
-
- def set(**opts)
- opts.each do |key, value|
- send "#{key}=", value
- end
- end
- end
-end