2011-06-13 18:48:36 +02:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT-License
|
2017-02-11 04:52:08 +01:00
|
|
|
* See COPYING for further information.
|
2011-06-13 18:48:36 +02:00
|
|
|
* ---
|
|
|
|
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INGAMEMENU_H
|
|
|
|
#define INGAMEMENU_H
|
|
|
|
|
2011-06-24 19:16:05 +02:00
|
|
|
#include "menu.h"
|
2011-06-13 18:48:36 +02:00
|
|
|
|
2012-08-13 19:20:40 +02:00
|
|
|
void draw_ingame_menu_bg(float f);
|
|
|
|
|
2012-08-12 20:16:40 +02:00
|
|
|
void create_ingame_menu(MenuData *menu);
|
2011-06-13 18:48:36 +02:00
|
|
|
void draw_ingame_menu(MenuData *menu);
|
|
|
|
|
2012-08-10 22:08:51 +02:00
|
|
|
#endif
|