Files
wagic/projects/mtg/include/PlayerData.h
wagic.the.homebrew d45e3b101b
2008-11-02 09:50:16 +00:00

18 lines
296 B
C++

#ifndef _PLAYER_DATA_H_
#define _PLAYER_DATA_H_
#define PLAYER_SAVEFILE "Res/player/data.dat"
#include "../include/MTGDeck.h"
class PlayerData{
protected:
public:
int credits;
MTGDeck * collection;
PlayerData(MTGAllCards * allcards);
~PlayerData();
int save();
};
#endif