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

class EnemyBullet {
public:
    EnemyBullet(int x, int y);
    const static char ALIEN_MAP_CHAR = '|';
    const static char ENEMY_MISSILE_MAP_CHAR = 'i';
private:
    int x;
    int y;
};