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

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