// // bullet.hpp // danmaku // // Created by Sam Jaffe on 5/26/19. // Copyright © 2019 Sam Jaffe. All rights reserved. // #pragma once #include "actor.hpp" namespace danmaku { class bullet { public: bullet(int damage); void update(engine::entity & ent); private: int damage_; }; }