Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (25 sloc)
576 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __TEAMLOSSDATA | |
#define __TEAMLOSSDATA | |
// wxWindows includes | |
#include <wx/datetime.h> | |
#include <wx/string.h> | |
#include <wx/dynarray.h> | |
// Statsgen Includes | |
class TeamLossData; | |
WX_DECLARE_OBJARRAY(TeamLossData,ArrayOfTeamLossData); | |
class TeamLossData | |
{ | |
public: | |
TeamLossData(); | |
virtual ~TeamLossData(); | |
static wxString SQLCreateTable(); | |
static wxString SQLTableName(); | |
bool WriteToDatabase(int roundIndex,int itemIndex); | |
wxDateTime lossTime; | |
int gameType; | |
int mapName; | |
int playerIndex; | |
int playerClass; | |
int playerTeam; | |
}; | |
#endif |