Files
sfall/sfall/Game/combatAI.h
T
NovaRain 7322634780 Backported three game hooks from 4.x:
* ROLLCHECK, BESTWEAPON, CANUSEWEAPON

Updated documents.
2023-06-06 21:46:03 +08:00

24 lines
354 B
C++

/*
* sfall
* Copyright (C) 2008-2023 The sfall team
*
*/
#pragma once
namespace game
{
#include "..\FalloutEngine\Fallout2.h"
class CombatAI {
public:
static void init();
//static bool ai_can_use_weapon(fo::GameObject* source, fo::GameObject* weapon, long hitMode);
static void __stdcall ai_check_drugs(fo::GameObject* source);
};
}