mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-10 01:08:05 +01:00
21 lines
498 B
C++
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__
|