mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2024-11-15 15:00:46 +00:00
15 lines
191 B
Ruby
15 lines
191 B
Ruby
module Voicemeeter
|
|
class Midi
|
|
attr_accessor :current, :channel
|
|
attr_reader :cache
|
|
|
|
def initialize
|
|
@cache = {}
|
|
end
|
|
|
|
def get(key)
|
|
cache[key]
|
|
end
|
|
end
|
|
end
|