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

#include "game_entity.h"

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