mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
11 lines
140 B
C
11 lines
140 B
C
|
#ifndef NAVIGATION_AGENT_H
|
||
|
#define NAVIGATION_AGENT_H
|
||
|
|
||
|
class NavigationAgent
|
||
|
{
|
||
|
public:
|
||
|
NavigationAgent();
|
||
|
};
|
||
|
|
||
|
#endif // NAVIGATION_AGENT_H
|