fallout2-ce/src/mapper/mapper.h

24 lines
489 B
C
Raw Normal View History

2023-07-22 23:25:56 -07:00
#ifndef FALLOUT_MAPPER_MAPPER_H_
#define FALLOUT_MAPPER_MAPPER_H_
#include "map.h"
2023-07-22 23:44:09 -07:00
#include "obj_types.h"
2023-07-22 23:25:56 -07:00
namespace fallout {
extern MapTransition mapInfo;
2023-07-23 00:35:16 -07:00
extern int menu_val_0[8];
extern int menu_val_2[8];
extern int menu_val_1[21];
2023-07-23 00:01:58 -07:00
extern unsigned char* tool;
2023-07-22 23:49:22 -07:00
extern int tool_win;
2023-07-23 01:01:03 -07:00
int mapper_main(int argc, char** argv);
2023-07-23 00:01:58 -07:00
void print_toolbar_name(int object_type);
2023-07-22 23:44:09 -07:00
int mapper_inven_unwield(Object* obj, int right_hand);
2023-07-22 23:25:56 -07:00
} // namespace fallout
#endif /* FALLOUT_MAPPER_MAPPER_H_ */