// // enemy.hpp // danmaku // // Created by Sam Jaffe on 5/26/19. // Copyright © 2019 Sam Jaffe. All rights reserved. // #pragma once #include "actor.hpp" namespace danmaku { struct points_map { int on_damage; int on_kill; }; class enemy : public actor { public: enemy(Json::Value const & json, graphics::object const & obj, attack_factory get_attack); private: points_map points_; std::vector> attack_; }; }