Skip to content
Snippets Groups Projects
Commit 6df8d682 authored by Daniel Christoph's avatar Daniel Christoph
Browse files

Update src/sim/plugins/hello_world.cc

parent 3d02d5f1
No related merge requests found
#include <gazebo/gazebo.hh>
namespace gazebo
{
class WorldPluginTutorial : public WorldPlugin
{
public: WorldPluginTutorial() : WorldPlugin()
{
printf("Hello World!\n");
}
public: void Load(physics::WorldPtr _world, sdf::ElementPtr _sdf)
{
}
};
GZ_REGISTER_WORLD_PLUGIN(WorldPluginTutorial)
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment