mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
30 lines
806 B
C++
30 lines
806 B
C++
// ======================================================================
|
|
//
|
|
// GroupWaypointBuilder.h
|
|
//
|
|
// Copyright 2004 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_GroupWaypointBuilder_H
|
|
#define INCLUDED_GroupWaypointBuilder_H
|
|
|
|
// ======================================================================
|
|
|
|
class GroupObject;
|
|
class PlayerObject;
|
|
|
|
// ======================================================================
|
|
|
|
class GroupWaypointBuilder
|
|
{
|
|
public:
|
|
static void updateGroupWaypoints(GroupObject const &groupObject);
|
|
static void updateGroupWaypoints(PlayerObject &playerObject, bool updateGroup);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif // INCLUDED_GroupWaypointBuilder_H
|
|
|