28 lines
952 B
OpenEdge ABL
28 lines
952 B
OpenEdge ABL
|
|
/*--------------------------------------------------------------------------
|
|
A m o r 2 T . i
|
|
Internal data structure definitions for Amor2T. For details see amor2t.tex.
|
|
DO NOT TOUCH! This file is automatically created from amor2t.w.
|
|
|
|
Mark Koennecke, September 1999
|
|
----------------------------------------------------------------------------*/
|
|
|
|
typedef struct {
|
|
pMotor pMot;
|
|
char pName[80];
|
|
float fTarget;
|
|
}MotEntry, *pMotEntry;
|
|
|
|
|
|
|
|
typedef struct __AMOR2T {
|
|
pObjectDescriptor pDes;
|
|
pIDrivable pDriv;
|
|
pMotor aEngine[MAXMOT];
|
|
MotEntry toStart[MAXMOT];
|
|
int iStart;
|
|
ObPar *aParameter;
|
|
}Amor2T;
|
|
|
|
|