2006-02-24 04:48:15 +00:00
|
|
|
#ifndef __RAVENSHARED_H__
|
|
|
|
#define __RAVENSHARED_H__
|
|
|
|
|
|
|
|
class AActor;
|
|
|
|
|
|
|
|
class AMinotaur : public AActor
|
|
|
|
{
|
2008-08-06 19:25:59 +00:00
|
|
|
DECLARE_CLASS (AMinotaur, AActor)
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
|
|
|
int DoSpecialDamage (AActor *target, int damage);
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool Slam (AActor *);
|
|
|
|
void Tick ();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AMinotaurFriend : public AMinotaur
|
|
|
|
{
|
2008-08-06 19:25:59 +00:00
|
|
|
DECLARE_CLASS (AMinotaurFriend, AMinotaur)
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
2006-04-23 20:12:27 +00:00
|
|
|
int StartTime;
|
|
|
|
|
|
|
|
void Die (AActor *source, AActor *inflictor);
|
|
|
|
bool OkayToSwitchTarget (AActor *other);
|
|
|
|
void BeginPlay ();
|
|
|
|
void Serialize (FArchive &arc);
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__RAVENSHARED_H__
|