Skip to content

Commit

Permalink
Fix doxygen comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi committed Aug 7, 2023
1 parent b64305d commit c5ea56d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/scripting/sector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ class Sector final : public GameObjectManager
void set_gravity(float gravity);

/**
* Adds a game object to the game
*
* @param class_name GameObject's class
* @param name Name of the created object
* @param posX X position inside the current sector
* @param posY Y position inside the current sector
* @param direction Direction
* @param data Additional data
*/
* Adds a MovingObject to the game.
*
* @param string $class_name GameObject's class.
* @param string $name Name of the created object.
* @param int $posX X position inside the current sector.
* @param int $posY Y position inside the current sector.
* @param string $direction Direction.
* @param string $data Additional data.
*/
void add_object(const std::string& class_name, const std::string& name,
int posX, int posY, const std::string& direction,
const std::string& data);
Expand Down

0 comments on commit c5ea56d

Please sign in to comment.