Files
OpenBK7231T_App/src/sim/Controller_SimulatorLink.h
2022-11-29 09:55:57 +01:00

21 lines
498 B
C++

#ifndef __CONTROLLER_SIMULATORLINK_H__
#define __CONTROLLER_SIMULATORLINK_H__
#include "sim_local.h"
#include "Controller_Base.h"
#include "Coord.h"
class CControllerSimulatorLink : public CControllerBase {
TArray<CJunction*> related;
public:
CControllerSimulatorLink();
void addRelatedJunction(CJunction *p) {
related.push_back(p);
}
virtual void onDrawn();
class CControllerBase *cloneController(class CShape *origOwner, class CShape *newOwner);
};
#endif // __CONTROLLER_BUTTON_H__