Skip to content

Commit

Permalink
refactor: update common library
Browse files Browse the repository at this point in the history
  • Loading branch information
flavien-chenu committed Mar 25, 2024
1 parent f62b9e6 commit d85b215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/games/IGameProvider.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "types/GameManifest.hpp"

namespace shared::games {
class IGameProvider;
class IGameProvider;
}

class shared::games::IGameProvider
Expand Down
2 changes: 1 addition & 1 deletion common/games/components/IComponent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ class shared::games::components::IComponent {
*
* @return Entity of the component
*/
virtual std::shared_ptr<entity::IEntity> getEntity() noexcept = 0;
virtual const entity::IEntity &getEntity() noexcept = 0;
};

0 comments on commit d85b215

Please sign in to comment.