thug/Code/Sk/Modules/Skate/RaceGoal.h

30 lines
494 B
C
Raw Permalink Normal View History

2016-02-13 21:39:12 +00:00
#ifndef __SK_MODULES_SKATE_RACEGOAL_H__
#define __SK_MODULES_SKATE_RACEGOAL_H__
#ifndef __CORE_DEFINES_H
#include <core/defines.h>
#endif
#include <sk/modules/skate/GoalManager.h>
namespace Game
{
class CRaceGoal : public CGoal
{
friend class CGoalManager;
public:
CRaceGoal( Script::CStruct* pParams );
virtual ~CRaceGoal();
bool ShouldExpire();
bool IsExpired();
void Expire();
bool NextRaceWaypoint( uint32 goalId );
};
}
#endif