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,11 +1,12 @@
# frozen_string_literal: true
class IMICFPS
class SoundEffect
class FadeIn < SoundEffect
def setup
@start_time = Gosu.milliseconds
@duration = @options[:duration] # in milliseconds
@initial_volume = @options[:volume] ? @options[:volume] : 0.0
@initial_volume = @options[:volume] || 0.0
@sound = @options[:sound]
raise "duration not specified!" unless @duration
@@ -30,4 +31,4 @@ class IMICFPS
end
end
end
end
end