()
| 4071 | } |
| 4072 | |
| 4073 | private static void Quit_Draw() { |
| 4074 | int w, h; |
| 4075 | Dimension d = new Dimension(); |
| 4076 | ClientGlobals.re.DrawGetPicSize(d, "quit"); |
| 4077 | w = d.width; |
| 4078 | h = d.height; |
| 4079 | ClientGlobals.re.DrawPic((ClientGlobals.viddef.getWidth() - w) / 2, (ClientGlobals.viddef.getHeight() - h) / 2, "quit"); |
| 4080 | } |
| 4081 | |
| 4082 | private static void Menu_Quit_f() { |
| 4083 | PushMenu((List<String> args) -> Quit_Draw(), new keyfunc_t() { |
no test coverage detected