Module: FMOD

Defined in:
lib/fmod.rb,
lib/fmod/enums.rb,
lib/fmod/sound.rb,
lib/fmod/system.rb,
lib/fmod/channel.rb,
lib/fmod/constants.rb,
lib/fmod/functions.rb

Defined Under Namespace

Modules: Constants, Enums, Functions Classes: Channel, Sound, System

Class Method Summary collapse

Class Method Details

.initObject



14
15
16
# File 'lib/fmod.rb', line 14

def self.init
  @system = System.new
end

.systemObject

Ruby version of the system



19
20
21
# File 'lib/fmod.rb', line 19

def self.system
  @system
end

.system_pointerObject

This pointer is used by many of the sound functions



24
25
26
# File 'lib/fmod.rb', line 24

def self.system_pointer
  @system.pointer
end