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

#include "game_entity.h"

class Building : public GameEntity
{
public:
    Building(int x, int y);
    const static char MISSILE_CONTROLLER_CHAR = 'M';
    const static char ALIEN_FACTORY_CHAR = 'X';
};