mirror of
https://github.com/thestk/stk
synced 2026-01-13 13:01:52 +00:00
Version 0.99
This commit is contained in:
29
Object.cpp
Normal file
29
Object.cpp
Normal file
@@ -0,0 +1,29 @@
|
||||
/*******************************************/
|
||||
/* Object Class, by Perry R. Cook, 1995-96*/
|
||||
/* This is mostly here for compatibility */
|
||||
/* with Objective C. We'll also stick */
|
||||
/* global defines here, so everyone will */
|
||||
/* see them. */
|
||||
/*******************************************/
|
||||
|
||||
#include "Object.h"
|
||||
|
||||
|
||||
/* This is just here for compatibility and convenience,
|
||||
so there's no need to do any real calculations.
|
||||
I do set up some redefinable variables here. */
|
||||
|
||||
|
||||
Object :: Object()
|
||||
{
|
||||
MIDI_mod_wheel = 1; /* Controller # 1 */
|
||||
MIDI_control1 = 2; /* Breath Pressure */
|
||||
MIDI_control2 = 4; /* Foot Control */
|
||||
MIDI_control3 = 11; /* Expression Pedal */
|
||||
MIDI_after_touch = 128; /* Channel Pressure -> new controller */
|
||||
}
|
||||
|
||||
Object :: ~Object()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user