nick.h 392 Bytes
#pragma once

#include <common.h>
//////////////////////////////////////////////////////////////////////////
//随机昵称	

class rand_nick_mgr
{
public:

	bool load_cfg(void);
	std::string get_rand_name(void);
public:
	std::vector<std::string> mem_first_names;
	std::vector<std::string> mem_middle_names;
	std::vector<std::string> mem_last_names;
};

extern rand_nick_mgr* g_rand_nick_mgr;