You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
275 B
15 lines
275 B
#ifndef OBJDIM_DEFINED
|
|
#define OBJDIM_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "pobjdim.h"
|
|
#include "heights.h"
|
|
|
|
typedef struct objdim /* Object dimensions */
|
|
{
|
|
HEIGHTS heightsRef;
|
|
HEIGHTS heightsPres;
|
|
long dur;
|
|
} OBJDIM;
|
|
|
|
#endif /* !OBJDIM_DEFINED */
|