| 1234567891011121314151617 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* newZombie.cpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/15 13:51:00 by bchanot #+# #+# */
- /* Updated: 2025/07/15 13:56:23 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "Zombie.hpp"
- Zombie *newZombie(std::string name) {
- return new Zombie(name);
- }
|