fallout2-ce/src/mapper/mp_targt.h

20 lines
469 B
C
Raw Normal View History

2023-07-23 20:50:07 -07:00
#ifndef FALLOUT_MAPPER_MP_TARGT_H_
#define FALLOUT_MAPPER_MP_TARGT_H_
namespace fallout {
void target_override_protection();
2023-07-23 22:03:25 -07:00
bool target_overriden();
2023-07-23 22:08:01 -07:00
void target_make_path(char* path, int pid);
2023-07-23 20:50:07 -07:00
int target_init();
2023-07-23 21:17:21 -07:00
int target_exit();
2023-09-02 05:29:59 -07:00
int target_header_save();
2023-07-23 22:10:46 -07:00
int pick_rot();
2023-07-23 22:13:45 -07:00
int target_pick_global_var(int* value_ptr);
2023-07-23 22:17:04 -07:00
int target_pick_map_var(int* value_ptr);
2023-07-23 22:20:15 -07:00
int target_pick_local_var(int* value_ptr);
2023-07-23 20:50:07 -07:00
} // namespace fallout
#endif /* FALLOUT_MAPPER_MP_TARGT_H_ */