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.
20 lines
484 B
20 lines
484 B
#ifndef LSACT_DEFINED
|
|
#define LSACT_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "kamount.h"
|
|
|
|
#define sideNone 0 /* means no action */
|
|
#define sideLeft 1
|
|
#define sideRight 2
|
|
#define sideLeftRight 3 /* Review(segeyge): how to distribute?*/
|
|
|
|
typedef struct lsact /* action */
|
|
{
|
|
BYTE side; /* side of action (left/right/both) */
|
|
KAMOUNT kamnt; /* amount of action */
|
|
} LSACT;
|
|
|
|
|
|
#endif /* !LSACT_DEFINED */
|
|
|