add notesloader base class

This commit is contained in:
Glenn Maynard
2002-09-11 05:15:46 +00:00
parent 2237a894d2
commit db53dc9923
14 changed files with 141 additions and 52 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "stdafx.h"
#include "NotesLoader.h"
#include "NoteTypes.h"
#include "GameManager.h"
bool NotesLoader::Loadable( CString sPath )
{
CStringArray list;
GetApplicableFiles( sPath, list );
return list.GetSize() != 0;
}