source: trunk/src/org/apollo/meldex/RogTrackEvent.java

Last change on this file was 315, checked in by bjn8, 16 years ago

Apollo spin-off added

File size: 534 bytes
Line 
1package org.apollo.meldex;
2
3public class RogTrackEvent
4{
5 // Special track event constants
6 final static int LAST_NOTE_EVENT = 127;
7 final static int FERMATA_EVENT = 128;
8 final static int KEY_SIG_EVENT = 129;
9 final static int TIME_SIG_EVENT = 130;
10 final static int TEMPO_EVENT = 131;
11
12 // The type of the track event and it's parameters
13 int type;
14 int param1;
15 int param2;
16
17
18 public RogTrackEvent(int t, int p1, int p2)
19 {
20 type = t;
21 param1 = p1;
22 param2 = p2;
23 }
24}
Note: See TracBrowser for help on using the repository browser.