working on USB memory card detection for Linux

This commit is contained in:
Chris Danford
2003-12-15 08:34:06 +00:00
parent 9e489411e1
commit a4c3e79e7b
2 changed files with 298 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#ifndef MemoryCardManager_H
#define MemoryCardManager_H
/*
-----------------------------------------------------------------------------
Class: MemoryCardManager
Desc: Holds user-chosen preferences that are saved between sessions.
Copyright (c) 2001-2003 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "PlayerNumber.h"
class MemoryCardManager
{
public:
MemoryCardManager();
~MemoryCardManager();
void Update( float fDelta );
bool IsReady();
CString GetMemCardDir( PlayerNumber pn );
};
extern MemoryCardManager* MEMCARDMAN; // global and accessable from anywhere in our program
#endif