#ifndef HOLESOME_MAP_PLAYER_HPP #define HOLESOME_MAP_PLAYER_HPP #include #include "../player/player.hpp" struct MapPlayer { Player *player; b2Body *body; MapPlayer(Player *player, b2Body *body) : player(player), body(body) {} }; #endif //HOLESOME_MAP_PLAYER_HPP