iw4x-client/src/Components/Modules/Bots.hpp

19 lines
360 B
C++

#pragma once
namespace Components
{
class Bots : public Component
{
public:
Bots();
~Bots();
private:
static std::vector<std::string> BotNames;
static void BuildConnectString(char* buffer, const char* connectString, int num, int, int protocol, int checksum, int statVer, int statStuff, int port);
static void Spawn(unsigned int count);
};
}