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.
28 lines (20 sloc)
428 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 __PUNKBUSTERBANFILE | |
#define __PUNKBUSTERBANFILE | |
// wxWindows includes | |
#include <wx/datetime.h> | |
#include <wx/string.h> | |
#include <wx/filename.h> | |
// Statsgen Includes | |
class PunkbusterBanFile | |
{ | |
public: | |
PunkbusterBanFile(wxFileName &filenameIn); | |
virtual ~PunkbusterBanFile(); | |
void AddToDropList(); | |
private: | |
void LoadFile(); | |
wxFileName filename; | |
wxArrayString names; | |
wxArrayString reasons; | |
}; | |
#endif |