gwnavruntime/pathfollower/positiononpathcheckpointvalidator.h Source File

positiononpathcheckpointvalidator.h
Go to the documentation of this file.
1 /*
2 * Copyright 2016 Autodesk, Inc. All rights reserved.
3 * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4 * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5 */
6 
7 #pragma once
8 
10 
11 
12 namespace Kaim
13 {
14 
18 {
19 public:
20  // ------------------------------ Functions -----------------------------
21 
24 
25  virtual bool Validate(Bot* bot, const PositionOnPath& positionOnPath);
26 };
27 
28 } // namespace Kaim
29 
This class is the world element that represent an active character in Autodesk Navigation.
Definition: bot.h:128
This class aggregates all necessary information about a position on a Path.
Definition: positiononpath.h:29
Interface class for PositionOnPath validation classes.
Definition: ipositiononpathvalidator.h:20
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17
Default implementation of IPositionOnPathValidator interface that use Bot::HasReachedPosition() funct...
Definition: positiononpathcheckpointvalidator.h:17