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

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