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.
31 lines (24 sloc)
568 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 __STREAKDATA | |
#define __STREAKDATA | |
// wxWindows includes | |
#include <wx/datetime.h> | |
#include <wx/string.h> | |
#include <wx/dynarray.h> | |
// Statsgen Includes | |
#include "KillData.h" | |
class StreakData; | |
WX_DECLARE_OBJARRAY(StreakData,ArrayOfStreakData); | |
class StreakData | |
{ | |
public: | |
StreakData(); | |
virtual ~StreakData(); | |
int streakSize; | |
int streakEndedPlayerIndex; | |
static wxString SQLCreateTable(); | |
static wxString SQLTableName(); | |
bool WriteToDatabase(int roundIndex,int playerIndex, | |
int itemIndex,KillTypes streakType); | |
void Debug(); | |
}; | |
#endif |