This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/Console.cpp
2012-05-07 17:59:50 +01:00

60 lines
576 B
C++

#include <string>
#include <cmath>
#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()
{
}