| 41 | } |
| 42 | |
| 43 | void PanicButton::DrawModule() |
| 44 | { |
| 45 | gFont.DrawString("If anything goes horribly awry, click this\nand the party will be restored", 13, 5, 12); |
| 46 | |
| 47 | ofPushStyle(); |
| 48 | ofFill(); |
| 49 | ofSetColor(70, 0, 0); |
| 50 | ofRect(10, 40, 270, 80); |
| 51 | ofSetColor(255, 0, 0); |
| 52 | gFont.DrawString("PANIC", 106, 15, 115); |
| 53 | ofPopStyle(); |
| 54 | } |
nothing calls this directly
no test coverage detected