mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-06-11 16:04:00 +00:00
Moved the addSourceDirectory for physics/Bullet into the Engine/Source/CMakeLists.txt file that way it can actually appear where we expect it to in the solution explorer.
13 lines
309 B
C++
13 lines
309 B
C++
#ifndef ROBOT_CONTROL_EXAMPLE_H
|
|
#define ROBOT_CONTROL_EXAMPLE_H
|
|
|
|
enum EnumRobotControls
|
|
{
|
|
ROBOT_VELOCITY_CONTROL = 0,
|
|
ROBOT_PD_CONTROL,
|
|
ROBOT_PING_PONG_JOINT_FEEDBACK,
|
|
};
|
|
|
|
class CommonExampleInterface* RobotControlExampleCreateFunc(struct CommonExampleOptions& options);
|
|
|
|
#endif //ROBOT_CONTROL_EXAMPLE_H
|