2022-05-19 01:51:26 -07:00
|
|
|
#ifndef REACTION_H
|
|
|
|
#define REACTION_H
|
|
|
|
|
|
|
|
#include "obj_types.h"
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
typedef enum NpcReaction {
|
|
|
|
NPC_REACTION_BAD,
|
|
|
|
NPC_REACTION_NEUTRAL,
|
|
|
|
NPC_REACTION_GOOD,
|
|
|
|
} NpcReaction;
|
|
|
|
|
|
|
|
int reactionSetValue(Object* critter, int a2);
|
|
|
|
int reactionTranslateValue(int a1);
|
|
|
|
int _reaction_influence_();
|
|
|
|
int reactionGetValue(Object* critter);
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* REACTION_H */
|