diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-04-30 22:23:26 +0200 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-04-30 22:23:26 +0200 |
| commit | 76dbc41ed584cdec8571c42b8fbfacf7eada07e4 (patch) | |
| tree | 9566ddd7629476cae6348d96c3470b9c988de33d /lib/Element.ck | |
| parent | 4ce722cbf97591bc84d0c6477823391cc23706c6 (diff) | |
| download | digitale-debutanten-76dbc41ed584cdec8571c42b8fbfacf7eada07e4.tar.gz | |
NanoEvent MIDI abstraction, List instead of Queue class
* had to adapt all MIDI-using shreds
* some (slider/knob) scalings are more sane now (there are helpers for scaling a MIDI message value between two values)
Diffstat (limited to 'lib/Element.ck')
| -rw-r--r-- | lib/Element.ck | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Element.ck b/lib/Element.ck index 7a81429..3054d40 100644 --- a/lib/Element.ck +++ b/lib/Element.ck @@ -2,6 +2,8 @@ * List element */ public class Element { + Element @prev; Element @next; + Object @payload; } |
