Add target_overriden

This commit is contained in:
Alexander Batalov 2023-07-24 08:03:25 +03:00
parent 57711cae5f
commit 708862ca24
2 changed files with 10 additions and 0 deletions

View File

@ -2,12 +2,21 @@
namespace fallout { namespace fallout {
// 0x559DBC
static bool tgt_overriden = false;
// 0x49B2F0 // 0x49B2F0
void target_override_protection() void target_override_protection()
{ {
// TODO: Incomplete. // TODO: Incomplete.
} }
// 0x49B2F0
bool target_overriden()
{
return tgt_overriden;
}
// 0x49B424 // 0x49B424
int target_init() int target_init()
{ {

View File

@ -4,6 +4,7 @@
namespace fallout { namespace fallout {
void target_override_protection(); void target_override_protection();
bool target_overriden();
int target_init(); int target_init();
int target_exit(); int target_exit();