summaryrefslogtreecommitdiff
path: root/src/Console.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-19 17:59:00 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-19 17:59:00 (GMT)
commit6d3b447f8e32fdaccdb3727af4d72d341e191e94 (patch)
tree707dcea0977c413200d321a3e79cf02b4e69c1c4 /src/Console.h
parent44639a6423c03552a3c0faafab27ef8f395f73a6 (diff)
downloadpowder-6d3b447f8e32fdaccdb3727af4d72d341e191e94.zip
powder-6d3b447f8e32fdaccdb3727af4d72d341e191e94.tar.gz
Changes to thumbnail retreival
Diffstat (limited to 'src/Console.h')
-rw-r--r--src/Console.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Console.h b/src/Console.h
index 8f7a072..247d89c 100644
--- a/src/Console.h
+++ b/src/Console.h
@@ -4,7 +4,6 @@
#include <string>
#include <vector>
-#include "interface/Sandbox.h"
#include "simulation/Simulation.h"
class ConsoleCommand
@@ -29,7 +28,6 @@ private:
bool file_script;
std::vector<ConsoleCommand> * previousCommands;
std::string * lastError;
- ui::Sandbox * sandbox;
Simulation * sim;
public:
virtual void Tick(float * dt);
@@ -41,7 +39,7 @@ public:
virtual int ProcessCommand(char * console);
virtual std::string * GetLastError();
virtual std::vector<ConsoleCommand> * GetPreviousCommands();
- Console(ui::Sandbox * sandbox);
+ Console();
virtual ~Console();
};