-
Notifications
You must be signed in to change notification settings - Fork 0
/
AIFOLCAP.HXX
32 lines (28 loc) · 1.01 KB
/
AIFOLCAP.HXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ========================================================================
Copyright (c) 1990,1996 Synergistic Software
All Rights Reserved
========================================================================
Filename: aifolcap.hxx
Author: Greg Hightower
======================================================================== */
#ifndef _AIFOLCAP_H
#define _AIFOLCAP_H
/* -----------------------------------------------------------------
class definition
----------------------------------------------------------------- */
class FOLLOW_BTLCAP_DATA
{
public:
// what to do if clicked on
static void mfLeftButton(CAvatar *);
static void mfRightButton(CAvatar *);
static SHORT FOLLOW_BTLCAP_DATA::FindUnengaged(CAvatar *, SHORT, THINGTYPE);
SHORT hLeader; // Who I follow
LONG Rate; // My speed to keep up with him
LONG NewX; // where I try to move to
LONG NewY;
LONG NewA;
LONG FrameCount; // How long have I been doing something
SHORT Shoot; // shot type
};
#endif