Declares the ConVar class used for interacting with the application through the console. More...
#include <string>
#include "Math/MathCommon.h"
#include "Graphics/Color.h"
Classes | |
class | ConVarListener |
Interface for listening to console variable changes. More... | |
class | ConVar |
Represents a single console variable or command. More... | |
Typedefs | |
typedef void(* | fnConCommad )(Console *con, const char *cmd, void *userData, const std::vector< std::string > &args) |
The console command function prototype. |
Declares the ConVar class used for interacting with the application through the console.
typedef void(* fnConCommad)(Console *con, const char *cmd, void *userData, const std::vector< std::string > &args) |
The console command function prototype.
[in] | con | pointer to the console calling the command. |
[in] | cmd | the full command string that initiated the comand. |
[in] | userData | user data associated with the command. |
[in] | args | the command line split into seperate strings. |