mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
30 lines
529 B
C++
30 lines
529 B
C++
// Create-A-Trick goal!
|
|
|
|
#ifndef __SK_MODULES_SKATE_CATGOAL_H__
|
|
#define __SK_MODULES_SKATE_CATGOAL_H__
|
|
|
|
#ifndef __CORE_DEFINES_H
|
|
#include <core/defines.h>
|
|
#endif
|
|
|
|
#include <sk/modules/skate/GoalManager.h>
|
|
|
|
namespace Game
|
|
{
|
|
|
|
class CCatGoal : public CGoal
|
|
{
|
|
|
|
public:
|
|
CCatGoal( Script::CStruct* pParams );
|
|
virtual ~CCatGoal();
|
|
|
|
bool Activate();
|
|
bool Deactivate( bool force = false, bool affect_tree = true );
|
|
protected:
|
|
};
|
|
|
|
}
|
|
|
|
#endif // #ifndef __SK_MODULES_SKATE_FINDGAPSGOAL_H__
|