blob: 49e88fa46e254324442e5e3c8a7c95e38a4a0bd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef T2DLL_T2WORDDEFARRAY_H
#define T2DLL_T2WORDDEFARRAY_H
#include "../common.h"
class AFX_CLASS_EXPORT T2WordDefArray {
public:
T2WordDefArray(HINSTANCE instance);
virtual ~T2WordDefArray();
void GetWords(unsigned int sex, unsigned int age, unsigned int flags, unsigned int level, CString& outStr) const;
protected:
HINSTANCE mInstance;
};
#endif
|