Ran rubocop autocorrect

This commit is contained in:
2020-12-02 17:37:48 -06:00
parent aa30ff73d0
commit 95bea199ed
116 changed files with 758 additions and 575 deletions

View File

@@ -1,4 +1,5 @@
# frozen_string_literal: true
class IMICFPS
class HUD
def initialize(player)
@@ -7,8 +8,8 @@ class IMICFPS
@health = HealthWidget.new({ player: player })
@chat_history = ChatHistoryWidget.new({ player: player })
@score_board = ScoreBoardWidget.new({ player: player })
@squad = SquadWidget.new( { player: player } )
@crosshair = CrosshairWidget.new( { player: player } )
@squad = SquadWidget.new({ player: player })
@crosshair = CrosshairWidget.new({ player: player })
@hud_elements = [
@ammo,
@@ -17,8 +18,8 @@ class IMICFPS
@chat_history,
@score_board,
@squad,
@crosshair,
@crosshair
]
end