fallout2-ce/src/mapper/mp_targt.cc

37 lines
415 B
C++
Raw Normal View History

2023-07-23 20:50:07 -07:00
#include "mapper/mp_targt.h"
namespace fallout {
2023-07-23 22:03:25 -07:00
// 0x559DBC
static bool tgt_overriden = false;
2023-07-23 20:50:07 -07:00
// 0x49B2F0
void target_override_protection()
{
// TODO: Incomplete.
}
2023-07-23 22:03:25 -07:00
// 0x49B2F0
bool target_overriden()
{
return tgt_overriden;
}
2023-07-23 20:50:07 -07:00
// 0x49B424
int target_init()
{
// TODO: Incomplete.
return 0;
}
2023-07-23 21:17:21 -07:00
// 0x49B434
int target_exit()
{
// TODO: Incomplete.
return 0;
}
2023-07-23 20:50:07 -07:00
} // namespace fallout