mirror of
https://github.com/tribes2/engine.git
synced 2026-01-19 19:24:45 +00:00
33 lines
698 B
C++
33 lines
698 B
C++
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _AINAVSTEP_H_
|
|
#define _AINAVSTEP_H_
|
|
|
|
#ifndef _AISTEP_H_
|
|
#include "ai/aiStep.h"
|
|
#endif
|
|
#ifndef _GRAPH_H_
|
|
#include "ai/graph.h"
|
|
#endif
|
|
#ifndef _AINAVJETTING_H_
|
|
#include "ai/aiNavJetting.h"
|
|
#endif
|
|
|
|
class AIStepJet : public AIStep
|
|
{
|
|
protected:
|
|
typedef AIStep Parent;
|
|
|
|
AIJetting mJetting;
|
|
public:
|
|
AIStepJet(const Point3F& dest);
|
|
void process(AIConnection* ai, Player* player);
|
|
};
|
|
|
|
#endif
|