fallout2-ce/src/mapper/mp_targt.h

15 lines
299 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-07-23 20:50:07 -07:00
} // namespace fallout
#endif /* FALLOUT_MAPPER_MP_TARGT_H_ */