mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2024-11-15 23:00:48 +00:00
18 lines
248 B
Ruby
18 lines
248 B
Ruby
|
module Voicemeeter
|
||
|
class Midi
|
||
|
attr_accessor :cache, :current, :channel
|
||
|
|
||
|
def initialize
|
||
|
@cache = Hash.new
|
||
|
end
|
||
|
|
||
|
def get(key)
|
||
|
@cache[key]
|
||
|
end
|
||
|
|
||
|
def set(key, velocity)
|
||
|
@cache[key] = velocity
|
||
|
end
|
||
|
end
|
||
|
end
|