2023-11-30 09:12:16 +00:00
|
|
|
/**
|
|
|
|
* @file actseg.h
|
|
|
|
*
|
|
|
|
* @brief Declarations for actor segments.
|
|
|
|
*/
|
2023-12-02 23:12:15 +00:00
|
|
|
#ifndef ACTSEG_H
|
|
|
|
#define ACTSEG_H
|
|
|
|
|
2022-02-16 03:59:49 +00:00
|
|
|
#include <vec.h>
|
|
|
|
|
2023-11-29 21:43:23 +00:00
|
|
|
/**
|
2023-11-30 08:18:15 +00:00
|
|
|
* @brief Unknown, needs more research
|
2023-11-29 22:37:08 +00:00
|
|
|
*/
|
2022-02-16 03:59:49 +00:00
|
|
|
struct ACTLA
|
|
|
|
{
|
|
|
|
int fUseTarget;
|
|
|
|
struct ALO_conflict* paloTarget;
|
|
|
|
struct VECTOR posTargetLocal;
|
|
|
|
float sIgnore;
|
|
|
|
int nPriorityEnabled;
|
|
|
|
int nPriorityDisabled;
|
|
|
|
int fPaused;
|
2023-02-19 03:48:11 +00:00
|
|
|
struct CLQ clqPanToPan;
|
|
|
|
struct LM lmPan;
|
|
|
|
struct CLQ clqTiltToTilt;
|
|
|
|
struct LM lmTilt;
|
2022-07-15 20:36:21 +00:00
|
|
|
};
|
2023-12-02 23:12:15 +00:00
|
|
|
|
|
|
|
#endif // ACTSEG_H
|