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

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