mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
24 lines
354 B
C++
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);
|
|
};
|
|
|
|
}
|