| 28 | #include "PatchCableSource.h" |
| 29 | |
| 30 | GridControlTarget::GridControlTarget(IGridControllerListener* owner, const char* name, int x, int y) |
| 31 | : mOwner(owner) |
| 32 | { |
| 33 | SetName(name); |
| 34 | SetPosition(x, y); |
| 35 | dynamic_cast<IDrawableModule*>(owner)->AddUIControl(this); |
| 36 | SetParent(dynamic_cast<IClickable*>(owner)); |
| 37 | } |
| 38 | |
| 39 | void GridControlTarget::Render() |
| 40 | { |
nothing calls this directly
no test coverage detected