module Voicemeeter
module Version
module_function
def major
0
end
def minor
def patch
1
def to_a
[major, minor, patch]
def to_s
to_a.join(".")
VERSION = Version.to_s