XJ music engine  1.9.6
In-game runtime engine for XJ music.
BPM.h
Go to the documentation of this file.
1 // Copyright (c) XJ Music Inc. (https://xjmusic.com) All Rights Reserved.
2 
3 #ifndef XJMUSIC_MUSIC_BPM_H
4 #define XJMUSIC_MUSIC_BPM_H
5 
7 
8 namespace XJ {
9 
14  class BPM {
15  public:
16 
23  static long long beatsNanos(float beats, float bpm);
24 
31  static float velocity(float bpm);
32 
33  };
34 
35 }// namespace XJ
36 
37 #endif// XJMUSIC_MUSIC_BPM_H
Definition: BPM.h:14
static float velocity(float bpm)
Definition: BPM.cpp:16
static long long beatsNanos(float beats, float bpm)
Definition: BPM.cpp:11
Definition: ActiveAudio.h:11