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

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