Add target_overriden
This commit is contained in:
parent
57711cae5f
commit
708862ca24
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue