| 22 | { |
| 23 | |
| 24 | void createAndSelectSingleBrush() |
| 25 | { |
| 26 | auto worldspawn = GlobalMapModule().findOrInsertWorldspawn(); |
| 27 | |
| 28 | auto brushNode = GlobalBrushCreator().createBrush(); |
| 29 | worldspawn->addChildNode(brushNode); |
| 30 | |
| 31 | GlobalSelectionSystem().setSelectedAll(false); |
| 32 | Node_setSelected(brushNode, true); |
| 33 | } |
| 34 | |
| 35 | } |
| 36 |
no test coverage detected