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

#include "game_entity.h"

class Alien : public GameEntity
{
public:
    Alien(int x, int y);
    const static char MAP_CHAR = 'x';
private:
};