b366f5cb4f
-Client Stuff- Functions: + fileWrite(<filepath>, <string>, <mode>) + fileRead(<filepath>) + fileExists(<filepath>) + fileRemove(<filepath>) Methods: + self getIp() + self getPing() Commands: + NULL
18 lines
212 B
C++
18 lines
212 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class Client : public Component
|
|
{
|
|
public:
|
|
Client();
|
|
~Client();
|
|
|
|
private:
|
|
|
|
static void AddFunctions();
|
|
static void AddMethods();
|
|
static void AddCommands();
|
|
};
|
|
}
|