1 2 3 4 5 6 7 8 9 10 11
#pragma once #include "game_entity.h" class PlayerMissile: public GameEntity { public: PlayerMissile(int x, int y); const static char MAP_CHAR = '!'; private: };