CServerList.h 281 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "CBaseMode.h"
  3. #include "CServerListMode.h"
  4. class CServerList : public CBaseMode
  5. {
  6. public:
  7. CServerList();
  8. ~CServerList();
  9. bool Init(std::string data);
  10. void MinimumSelectNode();
  11. std::vector<CServerListMode> vectlistmode;
  12. std::string node_name;
  13. };