umorna/source/engine.h

22 lines
442 B
C
Raw Normal View History

#ifndef UMORNA_ENGINE
#define UMORNA_ENGINE
#include "game.h"
#include "menu.h"
#include "render.h"
2023-12-22 02:09:39 -05:00
extern int camera_x;
extern int camera_y;
2023-12-29 07:14:30 -05:00
extern void view_hud (int x, int y, int width, int height, int small, int alpha);
2023-12-29 07:14:30 -05:00
extern void view_menu (int menu, int x, int y, int small, int align, int alpha);
2023-12-22 02:09:39 -05:00
extern void view_map (int offset_x, int offset_y);
2023-12-29 07:14:30 -05:00
extern void view_map_overlay (void);
2023-12-21 20:19:30 -05:00
2023-12-21 23:08:09 -05:00
extern void view_side_hud (void);
#endif