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

class Shield {
public:
    Shield(int x, int y);
private:
    int x;
    int y;
};