summaryrefslogtreecommitdiff
path: root/2015-spacebot/include/spaceship.h
blob: bd26b6455e918a6261ccad3c140fd55e59f3b88c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "game_entity.h"

class Spaceship: public GameEntity
{
public:
    Spaceship(int x, int y);
    const static char ENEMY_MAP_CHAR = 'V';
    const static char PLAYER_MAP_CHAR = 'A';
private:
};