From f9505197eefa59b1c36a367b1399211b2260a705 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 28 Jul 2003 08:21:12 +0000 Subject: [PATCH] add BlacklistedImages --- stepmania/src/NotesLoader.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/NotesLoader.h b/stepmania/src/NotesLoader.h index 431d2de7d6..5da6eebf23 100644 --- a/stepmania/src/NotesLoader.h +++ b/stepmania/src/NotesLoader.h @@ -2,6 +2,7 @@ #define NOTES_LOADER_H #include "song.h" +#include typedef int DanceNote; enum { @@ -24,7 +25,10 @@ class NotesLoader { protected: virtual void GetApplicableFiles( CString sPath, CStringArray &out )=0; + set BlacklistedImages; + public: + const set &GetBlacklistedImages() const { return BlacklistedImages; } static void GetMainAndSubTitlesFromFullTitle( const CString sFullTitle, CString &sMainTitleOut, CString &sSubTitleOut ); virtual bool LoadFromDir( CString sPath, Song &out ) = 0; bool Loadable( CString sPath );