#include <platform.hpp>
Public Member Functions | |
Platform (_Platform *platform) | |
~Platform () | |
void | goto_node (int node_no) |
Move platform until at given node, then stop. | |
void | start_moving () |
Start moving platform. | |
void | stop_moving () |
Stop platform at next node. | |
Public Attributes | |
_Platform * | platform |
Private Member Functions | |
Platform (const Platform &) | |
Platform & | operator= (const Platform &) |
Definition at line 27 of file platform.hpp.
scripting::Platform::Platform | ( | _Platform * | platform | ) |
Platform::~Platform | ( | ) |
scripting::Platform::Platform | ( | const Platform & | ) | [private] |
void Platform::goto_node | ( | int | node_no | ) |
Move platform until at given node, then stop.
Definition at line 31 of file platform.cpp.
References Platform::goto_node().
Referenced by scripting::wrapper::Platform_goto_node_wrapper().
void Platform::start_moving | ( | ) |
Start moving platform.
Definition at line 36 of file platform.cpp.
References Platform::start_moving().
Referenced by scripting::wrapper::Platform_start_moving_wrapper().
00037 { 00038 platform->start_moving(); 00039 }
void Platform::stop_moving | ( | ) |
Stop platform at next node.
Definition at line 41 of file platform.cpp.
References Platform::stop_moving().
Referenced by scripting::wrapper::Platform_stop_moving_wrapper().
00042 { 00043 platform->stop_moving(); 00044 }
Definition at line 45 of file platform.hpp.