mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-19 14:11:15 +00:00
Add target_overriden
This commit is contained in:
parent
57711cae5f
commit
708862ca24
@ -2,12 +2,21 @@
|
||||
|
||||
namespace fallout {
|
||||
|
||||
// 0x559DBC
|
||||
static bool tgt_overriden = false;
|
||||
|
||||
// 0x49B2F0
|
||||
void target_override_protection()
|
||||
{
|
||||
// TODO: Incomplete.
|
||||
}
|
||||
|
||||
// 0x49B2F0
|
||||
bool target_overriden()
|
||||
{
|
||||
return tgt_overriden;
|
||||
}
|
||||
|
||||
// 0x49B424
|
||||
int target_init()
|
||||
{
|
||||
|
@ -4,6 +4,7 @@
|
||||
namespace fallout {
|
||||
|
||||
void target_override_protection();
|
||||
bool target_overriden();
|
||||
int target_init();
|
||||
int target_exit();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user