Files
sfall/sfall/Game/combatAI.h
T
NovaRain fc53df5a16 Added a new hook: HOOK_CANUSEWEAPON
Updated NPC armor appearance mod script.
2021-05-09 20:17:40 +08:00

19 lines
247 B
C++

/*
* sfall
* Copyright (C) 2008-2021 The sfall team
*
*/
#pragma once
namespace game
{
class CombatAI {
public:
static void init();
static long ai_can_use_weapon(fo::GameObject* source, fo::GameObject* weapon, long hitMode);
};
}