fallout2-ce/src/mapper/mapper.h

16 lines
278 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-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_ */