rename Notes to Steps

This commit is contained in:
Chris Danford
2003-08-03 00:13:55 +00:00
parent 579c975638
commit bf02bfddf4
69 changed files with 269 additions and 258 deletions
+3 -3
View File
@@ -17,7 +17,7 @@
struct PlayerOptions;
struct SongOptions;
class Song;
class Notes;
class Steps;
class Course
{
@@ -66,7 +66,7 @@ public:
{
Info(): pSong(NULL), pNotes(NULL), Random(false), Difficult(false) { }
Song* pSong;
Notes* pNotes;
Steps* pNotes;
CString Modifiers;
bool Random;
bool Mystery;
@@ -75,7 +75,7 @@ public:
int CourseIndex;
};
// Dereferences course_entries and returns only the playable Songs and Notes
// Dereferences course_entries and returns only the playable Songs and Steps
void GetCourseInfo( NotesType nt, vector<Info> &ci, int Difficult = -1 ) const;
int GetEstimatedNumStages() const { return m_entries.size(); }