mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-13 06:42:35 +00:00
12 lines
156 B
Ruby
12 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class SoundEffect
|
|
class FadeOut < FadeIn
|
|
def ratio
|
|
1.0 - super
|
|
end
|
|
end
|
|
end
|
|
end
|