XJ music engine  1.9.6
In-game runtime engine for XJ music.
RankedNote.h
Go to the documentation of this file.
1 // Copyright (c) XJ Music Inc. (https://xjmusic.com) All Rights Reserved.
2 
3 #ifndef XJ_MUSIC_FABRICATOR_RANKED_NOTE_H
4 #define XJ_MUSIC_FABRICATOR_RANKED_NOTE_H
5 
6 #include "xjmusic/music/Note.h"
7 
8 namespace XJ {
9 
14  class RankedNote {
15  Note note;
16  int delta;
17 
18  public:
19 
25  RankedNote(
26  Note note,
27  int delta
28  );
29 
34  Note getTones() const;
35 
40  int getDelta() const;
41 
42  };
43 
44 }// namespace XJ
45 
46 #endif //XJ_MUSIC_FABRICATOR_RANKED_NOTE_H
Definition: Note.h:19
Definition: RankedNote.h:14
RankedNote(Note note, int delta)
Definition: RankedNote.cpp:8
int getDelta() const
Definition: RankedNote.cpp:22
Note getTones() const
Definition: RankedNote.cpp:17
Definition: ActiveAudio.h:11