The-Powder-Toy/src/Console.cpp
2012-01-19 17:59:00 +00:00

60 lines
577 B
C++

#include <string>
#include <math.h>
#include "Console.h"
int Console::ParsePartref(char * txt)
{
}
int Console::ParseCoords(char * coords, int *x, int *y)
{
}
int Console::ParseType(char * txt)
{
}
void Console::Tick(float * dt)
{
}
void Console::ConsoleShown()
{
}
void Console::ConsoleHidden()
{
}
int Console::ProcessCommand(char * console)
{
}
std::string * Console::GetLastError()
{
return lastError;
}
std::vector<ConsoleCommand> * Console::GetPreviousCommands()
{
}
Console::Console()
{
//sim = sandbox->GetSimulation();
}
Console::~Console()
{
}