15 lines
214 B
C++
15 lines
214 B
C++
#ifndef GUARD_PROJECTILES_H
|
|
#define GUARD_PROJECTILES_H
|
|
|
|
#include "utils.h"
|
|
|
|
typedef Position missile;
|
|
|
|
class Torpedo : public Position {
|
|
public:
|
|
playerID owner;
|
|
Torpedo(int x, int y, playerID owner);
|
|
};
|
|
|
|
#endif
|