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.
27 lines (21 sloc)
467 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 __WEIGHTLISTENTRY | |
#define __WEIGHTLISTENTRY | |
// wxWindows includes | |
#include <wx/datetime.h> | |
#include <wx/string.h> | |
#include <wx/dynarray.h> | |
#include <wx/textfile.h> | |
// Statsgen Includes | |
class WeightListEntry; | |
WX_DECLARE_OBJARRAY(WeightListEntry,ArrayOfWeightListEntry); | |
class WeightListEntry | |
{ | |
public: | |
WeightListEntry(); | |
~WeightListEntry(); | |
void UpdateWeighting(wxString &prefix); | |
wxString key; | |
float weight; | |
float defaultValue; | |
}; | |
#endif |