Replace forward declaration with include NoteData.h

This commit is contained in:
Michael Votaw
2024-08-11 09:43:54 -07:00
committed by teejusb
parent f96ee75ccc
commit 7b1b287760
2 changed files with 1 additions and 3 deletions
-1
View File
@@ -1,7 +1,6 @@
#include "global.h" #include "global.h"
#include "ColumnCues.h" #include "ColumnCues.h"
#include "GameState.h" #include "GameState.h"
#include "NoteData.h"
#include "TimingData.h" #include "TimingData.h"
void ColumnCue::CalculateColumnCues(const NoteData &in, std::vector<ColumnCue> &out, float minDuration) void ColumnCue::CalculateColumnCues(const NoteData &in, std::vector<ColumnCue> &out, float minDuration)
+1 -2
View File
@@ -3,8 +3,7 @@
#include "GameConstantsAndTypes.h" #include "GameConstantsAndTypes.h"
#include "NoteTypes.h" #include "NoteTypes.h"
#include "NoteData.h"
class NoteData;
/* ColumnCues are used to indicate to the player which column the next note will occur /* ColumnCues are used to indicate to the player which column the next note will occur
after a long gap in the stepchart. after a long gap in the stepchart.