summaryrefslogtreecommitdiff
path: root/2015-spacebot/include/player_missile.h
blob: c504a79568e0b85662bbd4f0cf10bc2b4820895a (plain)
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:
};