blob: 415c0d08e6be2900f26bdf53afd4dbc37bbd911f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#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;
};
|