mirror of
https://github.com/godotengine/godot.git
synced 2024-12-27 11:24:59 +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
|