Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/script_engine/src/lib/script_engine/script_manager.cc @ 8138

Last change on this file since 8138 was 8138, checked in by snellen, 18 years ago

Continued working on script manager

File size: 714 bytes
Line 
1#include <string>
2#include <list>
3
4#include "script.h"
5#include "script_manager.h"
6
7
8ScriptManager::ScriptManager(std::string& world)
9{
10  this->init(world);
11
12}
13
14ScriptManager::~ScriptManager()
15{
16
17
18}
19
20ScriptManager* ScriptManager::getInstance()
21{
22
23  if (!ScriptManager::singletonRef)
24    ScriptManager::singletonRef = new ScriptManager();
25  return ScriptManager::singletonRef;
26
27}
28
29
30//!< Fills the worldObject list
31
32void ScriptManager::init(std::string& world)
33{
34
35
36}
37
38
39
40void ScriptManager::loadParams(const TiXmlElement* root)
41{
42  //BaseObject::loadParams(root);
43
44
45}
46
47
48void ScriptManager::tick(float timestep)
49{
50}
51
52void ScriptManager::changeWorld(std::string& newWorld)
53{
54}
55
56
57void ScriptManager::initScripts()
58{
59}
60
61
Note: See TracBrowser for help on using the repository browser.